/* ═══════════════════════════════════════════
   PAINT ONE GmbH — Premium Dark 2026
   WOW-Effekte, Glasmorphism, Animations
   ═══════════════════════════════════════════ */

:root {
    --bg-dark: #1a2233;
    --bg-darker: #111827;
    --bg-mid: #1e2d45;
    --bg-card: rgba(255,255,255,.05);
    --card-border: rgba(255,255,255,.08);
    --accent: #E8521A;
    --accent-dark: #C94215;
    --accent-light: rgba(232,82,26,.15);
    --accent-glow: rgba(232,82,26,.4);
    --gold: #c8a864;
    --text-white: #ffffff;
    --text-light: #c4cdd8;
    --text-muted: #8a95a0;
    --radius: 14px;
    --nav-h: 72px;
    --nav-h-shrink: 56px;
    --shadow-hover: 0 12px 40px rgba(232,82,26,.2);
    --glass-bg: rgba(255,255,255,.05);
    --glass-border: rgba(255,255,255,.1);
    --glass-blur: blur(20px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { max-width: 100vw; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light); line-height: 1.6;
    background: var(--bg-dark); overflow-x: hidden;
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff7b47, var(--accent));
    z-index: 9999; width: 0; transition: width .1s linear;
}

/* ─── NAV ─── */
nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(26,34,51,.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 0 2rem; height: var(--nav-h);
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
    transition: height .3s ease, padding .3s ease, background .3s ease;
}
nav.shrink {
    height: var(--nav-h-shrink);
    background: rgba(17,24,39,.98);
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
nav.shrink .nav-logo img { height: 26px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; filter: brightness(0) invert(1); transition: height .3s ease; }
.nav-links { list-style: none; display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,.65); text-decoration: none;
    font-weight: 500; font-size: .88rem; transition: color .3s;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), #ff7b47);
    transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--accent) !important; color: #fff !important;
    padding: .5rem 1.3rem; border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 0 20px rgba(232,82,26,.3);
    transition: all .3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--accent-dark) !important;
    box-shadow: 0 0 30px rgba(232,82,26,.5) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px; z-index: 101;
    position: relative;
}
.hamburger span {
    display: block; width: 24px; height: 2px; background: #fff;
    transition: all .3s ease; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh; padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    display: flex; align-items: center;
    background: linear-gradient(160deg, var(--bg-darker) 0%, var(--bg-mid) 50%, #1a2a3a 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -20%; right: 0;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,82,26,.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -15%; left: 0;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,168,100,.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

/* Particles */
.hero-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0; pointer-events: none;
}
.particle {
    position: absolute; border-radius: 50%;
    background: rgba(232,82,26,.15);
    animation: particleFloat linear infinite;
}
.particle:nth-child(odd) { background: rgba(255,255,255,.06); }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-inner {
    max-width: 1100px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent-light); color: var(--accent);
    border: 1px solid rgba(232,82,26,.25);
    padding: .4rem .9rem; border-radius: 50px;
    font-size: .78rem; font-weight: 600; letter-spacing: .3px;
    margin-bottom: 1.4rem;
    animation: fadeInUp .6s ease both;
}
.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800; line-height: 1.18; margin-bottom: 1.2rem;
    color: var(--text-white);
    animation: fadeInUp .6s ease .1s both;
}
.hero h1 .highlight { color: var(--accent); }
.hero h1 .typing-text {
    color: var(--accent);
    border-right: 3px solid var(--accent);
    animation: blink .8s step-end infinite;
    padding-right: 2px;
}
@keyframes blink { 50% { border-color: transparent; } }

.hero-text > p {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 500px; margin-bottom: 2rem; line-height: 1.8;
    animation: fadeInUp .6s ease .2s both;
}
.hero-badges {
    display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.2rem;
    animation: fadeInUp .6s ease .3s both;
}
.badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .45rem .9rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px; font-size: .8rem; color: var(--text-light);
    font-weight: 500; transition: all .3s ease;
}
.badge:hover {
    background: rgba(232,82,26,.1);
    border-color: rgba(232,82,26,.3);
    transform: translateY(-2px);
}
.hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeInUp .6s ease .4s both;
}
.hero-image {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 25px 70px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.07);
    animation: fadeInRight .8s ease .3s both;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.hero-image:hover img { transform: scale(1.05); }
.hero-image-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: rgba(26,34,51,.92);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    padding: .8rem 1.2rem; border-radius: 12px;
    display: flex; align-items: center; gap: .8rem;
}
.hero-image-badge .num { font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-image-badge .lbl { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-block; padding: .85rem 2rem;
    background: var(--accent); color: #fff;
    text-decoration: none; border-radius: 10px;
    font-weight: 600; font-size: .95rem;
    transition: all .3s ease; border: none; cursor: pointer;
    position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,.2);
    transform: translate(-50%,-50%);
    transition: width .5s ease, height .5s ease;
}
.btn:hover::before { width: 300px; height: 300px; }
.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,82,26,.4), 0 0 40px rgba(232,82,26,.2);
}
.btn-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(232,82,26,.3); }
    50% { box-shadow: 0 0 40px rgba(232,82,26,.5), 0 0 60px rgba(232,82,26,.2); }
}
.btn-outline {
    background: transparent; color: var(--text-light);
    border: 1.5px solid rgba(255,255,255,.2);
    box-shadow: none;
}
.btn-outline::before { background: rgba(232,82,26,.1); }
.btn-outline:hover {
    border-color: var(--accent); color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-3px); box-shadow: none;
}

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title .eyebrow {
    display: inline-block;
    color: var(--accent); font-size: .78rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .6rem;
}
.section-title h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
    margin-bottom: .5rem; color: var(--text-white);
}
.section-title p { color: var(--text-muted); font-size: 1rem; }
.section-title .line {
    width: 50px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), #ff7b47);
    margin: 1rem auto 0;
}

.bg-soft { background: var(--bg-mid); }
.bg-warm { background: rgba(232,82,26,.04); }
.bg-cool { background: var(--bg-mid); }

/* ─── GLASMORPHISM CARD ─── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ─── GRADIENT BORDER ─── */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius);
}
.gradient-border::before {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(232,82,26,.4), rgba(255,123,71,.1), rgba(200,168,100,.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ─── SERVICE CARDS ─── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem; max-width: 1040px; margin: 0 auto;
}
.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius);
    padding: 2rem 1.8rem; text-decoration: none; color: var(--text-light);
    border: 1px solid var(--glass-border);
    transition: all .35s ease; display: block; position: relative;
    overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(232,82,26,.08), transparent 60%);
    opacity: 0; transition: opacity .35s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    border-color: rgba(232,82,26,.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(232,82,26,.15), 0 0 30px rgba(232,82,26,.1);
}
.service-card .svc-icon, .service-card .icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem; font-size: 1.3rem;
    transition: all .35s ease;
    position: relative; z-index: 1;
}
.service-card:hover .svc-icon {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(232,82,26,.4);
}
.service-card:hover .svc-icon svg { color: #fff; }
.service-card .svc-icon svg { width: 26px; height: 26px; color: var(--accent); transition: color .35s; }
.service-card h3 {
    font-size: 1.08rem; font-weight: 700; margin-bottom: .5rem;
    color: var(--text-white); position: relative; z-index: 1;
}
.service-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.7; position: relative; z-index: 1; }
.service-card .arrow {
    display: inline-flex; align-items: center; gap: .3rem;
    color: var(--accent); font-size: .82rem; font-weight: 600; margin-top: 1rem;
    position: relative; z-index: 1; transition: gap .3s;
}
.service-card:hover .arrow { gap: .6rem; }

/* ─── BEFORE/AFTER SLIDER ─── */
.ba-wrap {
    max-width: 800px; margin: 0 auto;
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.07);
}
.ba-slider {
    position: relative; width: 100%;
    user-select: none; cursor: ew-resize;
    aspect-ratio: 16/9; overflow: hidden;
}
.ba-before, .ba-after {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 3px; background: #fff;
    display: flex; align-items: center; justify-content: center; z-index: 10;
    box-shadow: 0 0 15px rgba(255,255,255,.3);
}
.ba-handle::after {
    content: '⟺';
    width: 44px; height: 44px; background: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--accent);
    box-shadow: 0 2px 15px rgba(0,0,0,.3), 0 0 20px rgba(232,82,26,.2);
    transition: transform .3s;
}
.ba-handle:hover::after { transform: scale(1.15); }
.ba-labels {
    display: flex; justify-content: space-between; padding: .8rem 1.5rem;
    background: var(--bg-darker); font-size: .78rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}
.ba-labels span:last-child { color: var(--accent); }

/* ─── REFERENCES ─── */
.ref-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem; max-width: 1040px; margin: 0 auto;
}
.ref-card {
    border-radius: var(--radius); overflow: hidden;
    transition: all .35s ease; background: var(--bg-card);
    border: 1px solid var(--card-border);
}
.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(232,82,26,.15);
    border-color: rgba(232,82,26,.3);
}
.ref-card img {
    width: 100%; height: 200px; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.ref-card:hover img { transform: scale(1.08); }
.ref-card .img-wrap { overflow: hidden; }
.ref-card .info { padding: 1.2rem 1.3rem; }
.ref-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; color: var(--text-white); }
.ref-card p { font-size: .82rem; color: var(--text-muted); }

/* ─── STATS ─── */
.stats-row {
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; padding: 2rem 0;
}
.stat { text-align: center; }
.stat .num {
    font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #ff7b47);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat .lbl { font-size: .82rem; color: var(--text-muted); margin-top: .5rem; font-weight: 500; }

/* ─── VALUES ─── */
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem; max-width: 960px; margin: 0 auto;
}
.value-card {
    padding: 2rem 1.6rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all .35s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,82,26,.3);
    box-shadow: 0 15px 40px rgba(232,82,26,.1);
}
.value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
    transition: all .35s;
}
.value-card:hover .value-icon {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(232,82,26,.4);
}
.value-card:hover .value-icon svg { color: #fff; }
.value-icon svg { width: 24px; height: 24px; color: var(--accent); transition: color .35s; }
.value-card .icon { font-size: 1.5rem; margin-bottom: .6rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--text-white); }
.value-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ─── FAQ ─── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--card-border);
    border-radius: var(--radius); margin-bottom: .8rem;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    transition: all .3s ease;
}
.faq-item:hover { border-color: rgba(232,82,26,.25); }
.faq-item[open] { border-color: rgba(232,82,26,.4); box-shadow: 0 4px 20px rgba(232,82,26,.1); }
.faq-item summary {
    padding: 1.2rem 1.4rem; font-weight: 600; font-size: .97rem;
    cursor: pointer; list-style: none; color: var(--text-light);
    display: flex; justify-content: space-between; align-items: center;
    transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.3rem; color: var(--accent); line-height: 1;
    transition: transform .3s ease;
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--accent-light); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item[open] summary { color: var(--text-white); }
.faq-item .faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
    padding: 0 1.4rem;
}
.faq-item[open] .faq-answer { max-height: 300px; padding: 0 1.4rem 1.2rem; }
.faq-item > p, .faq-item .faq-answer p {
    color: var(--text-muted); font-size: .9rem; line-height: 1.8;
}
.faq-item > p { padding: 0 1.4rem 1.2rem; }

/* ─── BLOG CARDS ─── */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.6rem; max-width: 1080px; margin: 0 auto;
}
.blog-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden; text-decoration: none; color: var(--text-light);
    transition: all .4s ease; display: block;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(232,82,26,.15);
    border-color: rgba(232,82,26,.3);
}
.blog-card-img {
    height: 200px; overflow: hidden; position: relative;
}
.blog-card-img .blog-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    transition: transform .5s ease;
}
.blog-card:hover .blog-placeholder { transform: scale(1.08); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
    display: flex; align-items: center; gap: .8rem;
    font-size: .75rem; color: var(--text-muted); margin-bottom: .8rem;
}
.blog-card-meta .tag {
    background: var(--accent-light); color: var(--accent);
    padding: .2rem .6rem; border-radius: 4px; font-weight: 600;
    font-size: .7rem;
}
.blog-card h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--text-white);
    margin-bottom: .5rem; line-height: 1.4;
}
.blog-card p {
    font-size: .85rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: .8rem;
}
.blog-card .read-more {
    color: var(--accent); font-size: .82rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: .3rem;
    transition: gap .3s;
}
.blog-card:hover .read-more { gap: .6rem; }

/* ─── DIY CARDS ─── */
.diy-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.6rem; max-width: 1080px; margin: 0 auto;
}
.diy-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden; text-decoration: none; color: var(--text-light);
    transition: all .4s ease; display: block;
}
.diy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(232,82,26,.15);
    border-color: rgba(232,82,26,.3);
}
.diy-card-img {
    height: 180px; overflow: hidden; position: relative;
}
.diy-card-img .diy-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    transition: transform .5s ease;
}
.diy-card:hover .diy-placeholder { transform: scale(1.08); }
.diy-card-body { padding: 1.5rem; }
.diy-card-badges {
    display: flex; gap: .5rem; margin-bottom: .8rem; flex-wrap: wrap;
}
.difficulty-badge {
    padding: .2rem .7rem; border-radius: 4px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.difficulty-easy { background: rgba(34,197,94,.15); color: #22c55e; }
.difficulty-medium { background: rgba(234,179,8,.15); color: #eab308; }
.difficulty-hard { background: rgba(239,68,68,.15); color: #ef4444; }
.time-badge {
    padding: .2rem .7rem; border-radius: 4px;
    font-size: .7rem; font-weight: 600;
    background: rgba(255,255,255,.08); color: var(--text-muted);
}
.diy-card h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--text-white);
    margin-bottom: .5rem; line-height: 1.4;
}
.diy-card p {
    font-size: .85rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: .8rem;
}
.diy-card .read-more {
    color: var(--accent); font-size: .82rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: .3rem;
    transition: gap .3s;
}
.diy-card:hover .read-more { gap: .6rem; }

/* ─── PAGE HERO ─── */
.page-hero {
    padding: calc(var(--nav-h) + 3rem) 2rem 3rem; text-align: center;
    background: linear-gradient(160deg, var(--bg-darker) 0%, var(--bg-mid) 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -50%; right: 0;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,82,26,.06) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: .5rem; color: var(--text-white); position: relative; }
.page-hero .subtitle { color: var(--text-muted); font-size: 1rem; position: relative; }

/* Breadcrumb */
.breadcrumb {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; color: var(--text-muted); margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ─── BLOG DETAIL ─── */
.blog-detail-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 3rem;
    max-width: 1080px; margin: 0 auto;
}
.blog-detail-content {}
.blog-detail-content h2 {
    font-size: 1.4rem; font-weight: 700; color: var(--text-white);
    margin: 2rem 0 .8rem;
}
.blog-detail-content h3 {
    font-size: 1.1rem; font-weight: 600; color: var(--accent);
    margin: 1.5rem 0 .6rem;
}
.blog-detail-content p {
    color: var(--text-light); line-height: 1.9; margin-bottom: 1rem;
    font-size: .95rem;
}
.blog-detail-content ul, .blog-detail-content ol {
    margin: .8rem 0 1.2rem 1.5rem;
}
.blog-detail-content li {
    color: var(--text-light); line-height: 1.8; margin-bottom: .3rem;
    font-size: .95rem;
}
.blog-detail-hero {
    width: 100%; height: 300px; border-radius: var(--radius);
    overflow: hidden; margin-bottom: 2rem;
}
.blog-detail-hero > * { width: 100%; height: 100%; }
.blog-meta-bar {
    display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem;
    padding-bottom: 1.5rem; border-bottom: 1px solid var(--card-border);
    flex-wrap: wrap;
}
.blog-meta-bar .tag {
    background: var(--accent-light); color: var(--accent);
    padding: .3rem .8rem; border-radius: 6px; font-weight: 600;
    font-size: .78rem;
}
.blog-meta-bar span { font-size: .85rem; color: var(--text-muted); }

/* Sidebar */
.blog-sidebar {}
.sidebar-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-card h4 {
    font-size: .9rem; font-weight: 700; color: var(--text-white);
    margin-bottom: 1rem; padding-bottom: .6rem;
    border-bottom: 1px solid var(--card-border);
}
.sidebar-link {
    display: block; padding: .6rem 0; text-decoration: none;
    color: var(--text-light); font-size: .85rem; transition: color .2s;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.sidebar-link:hover { color: var(--accent); }
.sidebar-link:last-child { border: none; }

/* ─── DIY DETAIL ─── */
.diy-detail-content h2 {
    font-size: 1.3rem; font-weight: 700; color: var(--text-white);
    margin: 2rem 0 .8rem;
}
.diy-detail-content h3 {
    font-size: 1.05rem; font-weight: 600; color: var(--accent);
    margin: 1.5rem 0 .6rem;
}
.diy-detail-content p {
    color: var(--text-light); line-height: 1.9; margin-bottom: 1rem;
    font-size: .95rem;
}
.diy-detail-content ul, .diy-detail-content ol {
    margin: .8rem 0 1.2rem 1.5rem;
}
.diy-detail-content li {
    color: var(--text-light); line-height: 1.8; margin-bottom: .3rem;
    font-size: .95rem;
}
.material-list {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem; margin: 1.5rem 0;
}
.material-list h4 {
    font-size: .9rem; font-weight: 700; color: var(--accent);
    margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem;
}
.material-list ul { list-style: none; margin: 0; padding: 0; }
.material-list li {
    padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .9rem; display: flex; align-items: center; gap: .5rem;
}
.material-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.material-list li:last-child { border: none; }

.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-weight: 700; font-size: .85rem;
    margin-right: .6rem; flex-shrink: 0;
}

/* Back link */
.back-link {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--accent); text-decoration: none; font-weight: 600;
    font-size: .9rem; margin-top: 2rem; transition: gap .3s;
}
.back-link:hover { gap: .8rem; }

/* ─── CTA / KONTAKT ─── */
.cta {
    text-align: center; padding: 6rem 2rem;
    background: linear-gradient(160deg, var(--bg-darker) 0%, var(--bg-mid) 100%);
    position: relative; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,82,26,.06) 0%, transparent 70%);
}
.cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
    margin-bottom: .5rem; color: var(--text-white); position: relative;
}
.cta .sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem; position: relative; }

/* ─── CONTACT ROW ─── */
.contact-row {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    margin-bottom: 2rem; position: relative;
}
.c-item {
    text-align: center; padding: 1.2rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all .3s ease; min-width: 180px;
}
.c-item:hover { border-color: rgba(232,82,26,.3); transform: translateY(-3px); }
.c-item .icon { font-size: 1.4rem; margin-bottom: .4rem; }
.c-item .label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.c-item .val { font-size: .95rem; font-weight: 600; margin-top: .3rem; color: var(--text-white); }
.c-item a { color: var(--text-white); text-decoration: none; }
.c-item a:hover { color: var(--accent); }

/* ─── FOOTER ─── */
footer { background: var(--bg-darker); color: var(--text-muted); padding: 4rem 2rem 1.5rem; }
.footer-content {
    max-width: 1060px; margin: 0 auto;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-col h4 {
    color: rgba(255,255,255,.7); font-size: .8rem; margin-bottom: .9rem;
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;
}
.footer-col p { font-size: .84rem; line-height: 1.85; }
.footer-col a {
    display: block; color: var(--text-muted); text-decoration: none;
    font-size: .84rem; line-height: 2.1; transition: all .2s;
    position: relative;
}
.footer-col a:hover { color: var(--accent); padding-left: .3rem; }
.footer-logo { height: 28px; opacity: .6; margin-bottom: .9rem; filter: brightness(0) invert(1); }
.footer-bottom {
    max-width: 1060px; margin: 2rem auto 0; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.07);
    font-size: .72rem; text-align: center; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
    position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    text-decoration: none; transition: all .3s ease;
    animation: pulseWa 2s ease-in-out infinite;
}
@keyframes pulseWa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.5), 0 0 40px rgba(37,211,102,.2); }
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ─── LEGAL ─── */
.legal-content { max-width: 720px; margin: 0 auto; padding: 2rem 0; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; margin: 1.8rem 0 .6rem; color: var(--text-white); }
.legal-content h3 { font-size: .95rem; font-weight: 600; margin: 1.2rem 0 .4rem; color: var(--accent); }
.legal-content p { color: var(--text-light); line-height: 1.8; margin-bottom: .4rem; font-size: .92rem; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul { margin: .4rem 0 .8rem 1.2rem; }
.legal-content li { color: var(--text-light); line-height: 1.8; font-size: .92rem; }

/* ─── CONTENT ─── */
.content-block { max-width: 720px; margin: 0 auto; }
.content-block h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: .8rem; color: var(--text-white); }
.content-block h3 { font-size: 1.1rem; font-weight: 600; margin: 1.8rem 0 .6rem; color: var(--accent); }
.content-block p { color: var(--text-light); line-height: 1.9; margin-bottom: .8rem; font-size: .98rem; }
.content-block ul { margin: .8rem 0 1.2rem 1.2rem; }
.content-block li { color: var(--text-light); line-height: 1.8; margin-bottom: .2rem; }

/* ─── GALLERY ─── */
.gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem; margin: 2rem auto; max-width: 1000px;
}
.gallery img {
    width: 100%; height: 220px; object-fit: cover;
    border-radius: var(--radius); transition: transform .3s;
    border: 1px solid var(--card-border);
}
.gallery img:hover { transform: scale(1.02); }

/* ─── REVIEWS ─── */
.review-card {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 1.8rem; margin-bottom: 1.2rem;
    border: 1px solid var(--card-border);
}
.review-card .stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: .6rem; }
.review-card p { color: var(--text-light); font-style: italic; line-height: 1.8; font-size: .95rem; }
.review-card .author { color: var(--accent); font-weight: 600; margin-top: .6rem; font-style: normal; font-size: .85rem; }

/* ─── SECTION-LINK ─── */
.section-link {
    text-align: center; margin-top: 2.5rem;
}
.section-link a {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--accent); text-decoration: none; font-weight: 600;
    font-size: .95rem; transition: gap .3s;
    padding: .6rem 1.5rem; border: 1px solid rgba(232,82,26,.3);
    border-radius: 8px; background: var(--accent-light);
}
.section-link a:hover { gap: .8rem; background: rgba(232,82,26,.2); }

/* ─── KEYFRAMES ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(50px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(232,82,26,.3); }
    50% { box-shadow: 0 0 30px rgba(232,82,26,.6); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Scroll animations */
.scroll-fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}
.scroll-fade-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s ease;
}
.scroll-fade-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity .6s ease, transform .6s ease;
}
.scroll-fade-up.visible,
.scroll-fade-left.visible,
.scroll-fade-right.visible {
    opacity: 1; transform: translate(0);
}

/* General fade-in (kept for compat) */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .blog-detail-layout { grid-template-columns: 1fr; }
    .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .footer-content { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero { text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero h1 { font-size: 2.1rem; }
    .hero-text > p { margin-left: auto; margin-right: auto; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: rgba(17,24,39,.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; padding: 1.5rem 2rem;
        gap: .8rem;
        box-shadow: 0 8px 30px rgba(0,0,0,.3);
        border-bottom: 1px solid rgba(255,255,255,.06);
        transform: translateY(-10px); opacity: 0;
        transition: transform .3s ease, opacity .3s ease;
        pointer-events: none;
    }
    .nav-links.open {
        display: flex; transform: translateY(0); opacity: 1; pointer-events: all;
    }
    .hamburger { display: flex; }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .btn-outline { margin-left: 0; }
    .stats-row { gap: 2rem; }
    .contact-row { gap: 1rem; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .blog-grid, .diy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 1.2rem; }
    .c-item { min-width: 140px; }
}
