:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #141414;
  --border: #1c1c1c;
  --border-hover: #282828;
  --text: #efefef;
  --text-dim: #aaaaaa;
  --text-muted: #666666;
  --blue: #0066FF;
  --blue-hover: #1a7aff;
  --blue-glow: rgba(0,102,255,0.15);
  --blue-glow-lg: rgba(0,102,255,0.28);
  --orange: #FF9900;
  --orange-hover: #ffaa22;
  --orange-glow: rgba(255,153,0,0.18);
  --coming: #E05500;
  --font: 'Archivo', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
::selection { background: var(--blue); color: #fff; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px; height: 62px;
}
.nav-logo { font-size: 17px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.nav-logo span { color: var(--blue); }
.nav-logo .lg-eyes { color: inherit; font-size: 15px; margin-left: 6px; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text-dim);
  position: relative; cursor: pointer; transition: color .25s;
}
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--blue); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--blue); color: #fff; font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 99px; cursor: pointer;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }

.page { display: none; padding-top: 62px; min-height: 100vh; }
.page.on { display: block; animation: pageUp .4s var(--ease) both; }
@keyframes pageUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.divider { height: 1px; background: var(--border); max-width: 1140px; margin: 0 auto; }
.s-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.s-label::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.s-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 14px; }
.s-title em { font-style: normal; color: var(--blue); }
.s-desc { color: var(--text-dim); max-width: 640px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; border: none; border-radius: 99px;
  padding: 12px 26px; cursor: pointer; transition: all .25s var(--ease);
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--blue-glow); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-hover); }
.btn-ghost:hover { border-color: var(--text-dim); background: rgba(255,255,255,.04); }
.fade { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade.vis { opacity: 1; transform: translateY(0); }

.hero { position: relative; padding: 96px 0 56px; }
.hero-glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 720px; height: 480px; background: radial-gradient(ellipse, var(--blue-glow), transparent 65%); pointer-events: none; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.06; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-lead { font-size: 1.1rem; color: var(--text-dim); max-width: 600px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 56px; }
.stat { background: var(--bg2); padding: 26px 22px; }
.stat b { display: block; font-size: 1.8rem; font-weight: 900; letter-spacing: -.02em; }
.stat b i { font-style: normal; color: var(--blue); }
.stat span { font-size: 12.5px; color: var(--text-muted); }
.hero-banner { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 56px; }
.hero-banner img { width: 100%; }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.path-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px; cursor: pointer; transition: border-color .3s, transform .3s; }
.path-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.path-kicker { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.path-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.path-card p { font-size: .92rem; color: var(--text-dim); margin-bottom: 18px; }
.path-link { font-size: .88rem; font-weight: 700; color: var(--blue); }

.tpl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tpl { cursor: pointer; }
.tpl-frame { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg3); transition: border-color .3s, transform .3s; }
.tpl:hover .tpl-frame { border-color: var(--border-hover); transform: translateY(-4px); }
.tpl-bar { display: flex; align-items: center; gap: 5px; padding: 8px 10px; background: #101010; border-bottom: 1px solid var(--border); }
.tpl-bar i { width: 8px; height: 8px; border-radius: 50%; background: #2a2a2a; }
.tpl-bar .url { flex: 1; margin-left: 8px; height: 14px; border-radius: 7px; background: #181818; font-size: 8.5px; color: var(--text-muted); display: flex; align-items: center; padding: 0 8px; font-style: normal; }
.tpl-body { height: 190px; padding: 14px; display: flex; flex-direction: column; gap: 8px; font-size: 9px; }
.tpl-meta { padding: 14px 4px 0; }
.tpl-meta b { display: block; font-size: .98rem; font-weight: 800; }
.tpl-meta span { font-size: .82rem; color: var(--text-muted); }
.tA { background: linear-gradient(180deg, #f4efe6, #eae2d3); color: #2c2620; }
.tA .ln { background: #d8cdb8; }
.tA-hero { height: 64px; border-radius: 6px; background: linear-gradient(135deg, #7d9471, #4c6350); position: relative; }
.tA-hero::after { content: 'BERGHOTEL'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #f4efe6; font-weight: 700; letter-spacing: .28em; font-size: 9px; font-family: Georgia, serif; }
.tA-btn { width: 64px; height: 14px; border-radius: 7px; background: #4c6350; align-self: center; }
.tB { background: #15181d; color: #e8e8e8; }
.tB .ln { background: #262b33; }
.tB-hero { height: 64px; border-radius: 6px; background: repeating-linear-gradient(45deg, #f5a623, #f5a623 8px, #15181d 8px, #15181d 16px); position: relative; }
.tB-hero::after { content: 'MALERBETRIEB'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(21,24,29,.55); font-weight: 900; letter-spacing: .2em; font-size: 9px; }
.tB-btn { width: 64px; height: 14px; background: #f5a623; }
.tC { background: #0a0a0a; color: #eee; }
.tC .ln { background: #1f1f1f; }
.tC-hero { height: 64px; border-radius: 6px; background: radial-gradient(circle at 30% 40%, rgba(0,102,255,.5), transparent 60%), #101010; position: relative; }
.tC-hero::after { content: 'PORTFOLIO'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; letter-spacing: .3em; font-size: 9px; }
.tC-btn { width: 64px; height: 14px; border-radius: 99px; background: var(--blue); }
.ln { height: 7px; border-radius: 4px; }
.ln.w40 { width: 40%; }
.ln.w60 { width: 60%; }
.ln.w80 { width: 80%; }
.tpl-cols { display: flex; gap: 8px; }
.tpl-cols > div { flex: 1; height: 34px; border-radius: 5px; opacity: .85; }
.tA .tpl-cols > div { background: #ded5c2; }
.tB .tpl-cols > div { background: #20252c; }
.tC .tpl-cols > div { background: #161616; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.check-list li { display: flex; gap: 10px; font-size: .94rem; color: var(--text-dim); }
.check-list li::before { content: '✓'; color: var(--blue); font-weight: 800; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.step-num { font-size: .78rem; font-weight: 800; color: var(--blue); letter-spacing: .14em; margin-bottom: 10px; }
.step h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--text-dim); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; transition: border-color .3s, transform .3s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--blue); position: relative; }
.price-card.featured::before { content: 'Am häufigsten gewählt'; position: absolute; top: -11px; left: 24px; background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; padding: 3px 12px; border-radius: 99px; }
.price-card h4 { font-size: 1.08rem; font-weight: 800; }
.price-num { font-size: 2rem; font-weight: 900; letter-spacing: -.02em; margin: 12px 0 2px; }
.price-num small { font-size: .72rem; font-weight: 500; color: var(--text-muted); }
.price-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 14px; }
.price-card .check-list { margin: 0 0 22px; flex: 1; }
.price-card .check-list li { font-size: .86rem; }
.price-note-box { margin-top: 26px; background: var(--bg3); border: 1px solid var(--border); border-left: 3px solid var(--blue); border-radius: var(--radius); padding: 16px 20px; font-size: .86rem; color: var(--text-dim); }

.folder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.folder { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; cursor: pointer; text-align: center; transition: border-color .3s, transform .3s; }
.folder:hover, .folder.open { border-color: var(--blue); transform: translateY(-4px); }
.folder svg { width: 100%; height: 150px; margin-bottom: 16px; }
.folder svg path, .folder svg circle, .folder svg rect, .folder svg line, .folder svg polyline { fill: none; stroke: var(--text-dim); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 640; stroke-dashoffset: 0; transition: stroke .3s; }
.folder:hover svg path, .folder.open svg path, .folder:hover svg circle, .folder.open svg circle, .folder:hover svg rect, .folder.open svg rect, .folder:hover svg line, .folder:hover svg polyline, .folder.open svg line, .folder.open svg polyline { stroke: var(--blue); animation: draw 1.6s var(--ease) forwards; }
@keyframes draw { from { stroke-dashoffset: 640; } to { stroke-dashoffset: 0; } }
.folder b { display: block; font-size: 1.02rem; font-weight: 800; }
.folder span { font-size: .8rem; color: var(--text-muted); }
.gallery { display: none; margin-top: 34px; }
.gallery.on { display: block; animation: pageUp .4s var(--ease) both; }
.gal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gal-head h3 { font-size: 1.2rem; font-weight: 800; }
.gal-close { background: none; border: 1px solid var(--border-hover); color: var(--text-dim); border-radius: 99px; padding: 6px 16px; font-size: 12.5px; cursor: pointer; }
.gal-close:hover { color: var(--text); border-color: var(--text-dim); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gal-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; transition: border-color .3s; }
.gal-item:hover { border-color: var(--border-hover); }
.gal-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.gal-item.tall img { aspect-ratio: auto; max-height: 340px; object-fit: contain; background: #0b0b0b; padding: 10px 0; }
.gal-item p { font-size: .84rem; color: var(--text-dim); padding: 14px 16px; }
.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(4,4,4,.92); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; flex-direction: column; padding: 40px; cursor: zoom-out; }
.lightbox.on { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 76vh; border-radius: var(--radius); border: 1px solid var(--border-hover); object-fit: contain; }
.lightbox p { margin-top: 16px; color: var(--text-dim); font-size: .92rem; max-width: 640px; text-align: center; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(180deg, #101010, #0a0a0a); }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }
.about-body p { color: var(--text-dim); margin-bottom: 16px; }
.about-body p strong { color: var(--text); font-weight: 600; }
.tl { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.tl-row { display: flex; gap: 16px; }
.tl-badge { flex-shrink: 0; width: 86px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; color: var(--blue); text-transform: uppercase; padding-top: 2px; }
.tl-row p { font-size: .9rem; color: var(--text-dim); }
.asia-box { margin-top: 40px; background: linear-gradient(135deg, rgba(0,102,255,.08), transparent 55%), var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.asia-num { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.asia-num i { font-style: normal; color: var(--blue); }
.asia-num small { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .16em; color: var(--text-muted); text-transform: uppercase; margin-top: 6px; }
.asia-box p { font-size: .9rem; color: var(--text-dim); }

.contact-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.cs-btn { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align: left; cursor: pointer; color: var(--text); transition: border-color .3s; }
.cs-btn b { display: block; font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.cs-btn span { font-size: .84rem; color: var(--text-muted); }
.cs-btn.on { border-color: var(--blue); background: linear-gradient(135deg, rgba(0,102,255,.07), transparent 60%), var(--bg2); }
.contact-panel { display: none; }
.contact-panel.on { display: block; animation: pageUp .35s var(--ease) both; }
.form-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; max-width: 640px; }
.form-card label { display: block; font-size: .8rem; font-weight: 700; color: var(--text-dim); margin: 0 0 6px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; background: var(--bg); border: 1px solid var(--border-hover); border-radius: 8px; color: var(--text); font-family: var(--font); font-size: .92rem; padding: 11px 14px; margin-bottom: 16px; outline: none; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--blue); }
.form-card textarea { min-height: 110px; resize: vertical; }
.koop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.koop-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; transition: border-color .3s, transform .3s; }
.koop-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.koop-icon { font-size: 1.6rem; margin-bottom: 12px; }
.koop-card h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.koop-card p { font-size: .86rem; color: var(--text-dim); flex: 1; margin-bottom: 18px; }
.contact-direct { margin-top: 36px; font-size: .9rem; color: var(--text-muted); }
.contact-direct a { color: var(--text); font-weight: 700; border-bottom: 1px solid var(--blue); }

.hero { padding: 136px 44px 80px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); padding: 6px 14px; border: 1px solid rgba(0,102,255,.35); border-radius: 100px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: blink 2s ease infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.section { padding: 72px 44px; max-width: 1248px; margin: 0 auto; }
.section-full { padding: 72px 44px; }
.section-full > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 44px; }
.btn-dim { background: var(--bg2); color: var(--text-muted); border: 1px dashed var(--border); cursor: not-allowed; pointer-events: none; }
.btn-amazon { background: var(--orange); color: #000; font-weight: 700; }
.btn-amazon:hover { background: var(--orange-hover); box-shadow: 0 6px 20px var(--orange-glow); transform: translateY(-1px); }
.digital-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.dp-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.dp-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.dp-card.live:hover { border-color: rgba(0,102,255,.4); box-shadow: 0 18px 50px rgba(0,0,0,.4), 0 0 36px var(--blue-glow); }
.dp-thumb { height: 168px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); font-size: 56px; position: relative; user-select: none; background: var(--bg2); }
.dp-thumb-guide { background: linear-gradient(145deg, #060f1e 0%, #0a1c36 100%); }
.dp-thumb-lut { background: linear-gradient(145deg, #050d05 0%, #0a2010 100%); }
.dp-thumb-lr { background: linear-gradient(145deg, #140a00 0%, #241400 100%); }
.badge { position: absolute; top: 10px; right: 10px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.badge-live { background: var(--blue); color: #fff; }
.badge-soon { background: var(--coming); color: #fff; }
.badge-best { background: var(--orange); color: #000; }
.dp-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.dp-brand { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.dp-name { font-size: 15px; font-weight: 700; line-height: 1.35; }
.dp-price { font-size: 24px; font-weight: 900; margin-top: auto; }
.dp-price .price-note { font-size: 12px; font-weight: 400; color: var(--text-muted); display: block; margin-top: 2px; }
.ebook-wrap { background: linear-gradient(145deg, #06091a 0%, #080d1e 60%, #060a14 100%); border: 1px solid rgba(0,102,255,.18); border-radius: 20px; padding: 64px 52px; text-align: center; position: relative; overflow: hidden; }
.ebook-wrap::before { content: ''; position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,102,255,.1) 0%, transparent 70%); pointer-events: none; }
.ebook-pulse-label { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(0,102,255,.45); margin-bottom: 24px; animation: pulse-ring 2.5s ease-in-out infinite; }
@keyframes pulse-ring { 0%, 100% { border-color: rgba(0,102,255,.35); } 50% { border-color: rgba(0,102,255,.75); box-shadow: 0 0 12px var(--blue-glow); } }
.ebook-icon { font-size: 56px; margin-bottom: 20px; display: block; }
.ebook-wrap h2 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 18px; }
.ebook-desc { font-size: 15px; color: var(--text-dim); line-height: 1.8; max-width: 520px; margin: 0 auto 36px; }
.vote-progress { max-width: 380px; margin: 0 auto 36px; }
.vote-counter-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.vote-num { font-size: 44px; font-weight: 900; color: var(--blue); line-height: 1; letter-spacing: -.03em; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.vote-goal { font-size: 13px; color: var(--text-muted); }
.progress-track { height: 5px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: visible; position: relative; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue) 0%, #33aaff 100%); border-radius: 100px; transition: width 1.2s cubic-bezier(.4,0,.2,1); position: relative; }
.progress-fill::after { content: ''; position: absolute; right: 0; top: 50%; transform: translate(50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue-glow-lg); }
.vote-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.vbtn { padding: 14px 30px; border-radius: 10px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: background .2s, box-shadow .2s, transform .15s, opacity .2s; }
.vbtn-yes { background: var(--blue); color: #fff; }
.vbtn-yes:hover { background: var(--blue-hover); box-shadow: 0 8px 28px var(--blue-glow-lg); transform: translateY(-2px); }
.vbtn-no { background: rgba(255,255,255,.05); color: var(--text-muted); border: 1px solid var(--border); }
.vbtn-no:hover { border-color: var(--border-hover); color: var(--text-dim); }
.vbtn.voted { opacity: 0.4; pointer-events: none; transform: none !important; }
.vote-feedback { display: none; max-width: 420px; margin: 0 auto 28px; padding: 14px 18px; background: rgba(0,102,255,.07); border: 1px solid rgba(0,102,255,.18); border-radius: 8px; font-size: 13px; color: var(--text-dim); }
.vote-feedback.show { display: block; }
.ebook-form { max-width: 420px; margin: 0 auto; text-align: left; }
.ebook-form label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.ebook-form textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; color: var(--text); font-family: var(--font); font-size: 14px; resize: vertical; min-height: 96px; outline: none; transition: border-color .2s; }
.ebook-form textarea:focus { border-color: rgba(0,102,255,.5); }
.ebook-form textarea::placeholder { color: var(--text-muted); }
.ebook-form .btn { margin-top: 10px; }
.affiliate-note { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; background: rgba(255,153,0,.05); border: 1px solid rgba(255,153,0,.15); border-radius: 8px; margin-bottom: 28px; font-size: 12px; color: var(--text-muted); }
.affiliate-note span:first-child { flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.filter-tabs { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
.ftab { padding: 7px 18px; border-radius: 100px; background: var(--bg2); border: 1px solid var(--border); color: var(--text-muted); font-family: var(--font); font-size: 12px; font-weight: 600; cursor: pointer; transition: background .2s, border-color .2s, color .2s, box-shadow .2s; }
.ftab:hover { border-color: var(--border-hover); color: var(--text-dim); }
.ftab.on { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 16px var(--blue-glow); }
.amz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.amz-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s, transform .3s, box-shadow .3s; cursor: pointer; text-decoration: none; color: inherit; }
.amz-card:hover { border-color: rgba(255,153,0,.3); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.45), 0 0 28px var(--orange-glow); }
.amz-img { height: 148px; background: #111; display: flex; align-items: center; justify-content: center; font-size: 44px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.amz-img.cam { background: linear-gradient(145deg, #070c14 0%, #0b1520 100%); }
.amz-img.moto { background: linear-gradient(145deg, #120600 0%, #1c0e00 100%); }
.amz-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.amz-brand { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.amz-name { font-size: 12px; font-weight: 600; line-height: 1.45; color: var(--text); flex: 1; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.amz-price { font-size: 17px; font-weight: 900; color: var(--text); margin-bottom: 3px; }
.amz-price .orig { font-size: 11px; font-weight: 400; color: var(--text-muted); text-decoration: line-through; margin-left: 5px; }
.amz-delivery { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.amz-buy { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px; background: var(--orange); color: #000; border-radius: 6px; font-size: 11px; font-weight: 700; transition: background .2s, box-shadow .2s, transform .15s; margin-top: auto; }
.amz-card:hover .amz-buy { background: var(--orange-hover); box-shadow: 0 4px 14px var(--orange-glow); }
.amz-showall { text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.amz-showall p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.btn-amz-full { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; background: var(--orange); color: #000; border-radius: 8px; font-size: 13px; font-weight: 700; transition: background .2s, box-shadow .2s, transform .15s; }
.btn-amz-full:hover { background: var(--orange-hover); box-shadow: 0 6px 22px var(--orange-glow); transform: translateY(-1px); }

.fade { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.fade.d1 { transition-delay: .08s; }
.fade.d2 { transition-delay: .16s; }
.fade.d3 { transition-delay: .24s; }
.fade.d4 { transition-delay: .32s; }
.fade.visible { opacity: 1; transform: translateY(0); }

footer { border-top: 1px solid var(--border); padding: 44px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-muted); letter-spacing: .04em; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

@media (max-width: 960px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .tpl-grid, .folder-grid, .gal-grid, .price-grid, .steps, .koop-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { max-width: 380px; }
  .digital-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .wrap { padding: 0 20px; }
  .path-grid, .tpl-grid, .folder-grid, .gal-grid, .price-grid, .steps, .koop-grid, .rev-grid, .contact-switch { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .asia-box { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links li:not(:first-child):not(:last-child) { display: none; }
  .hero { padding: 112px 20px 60px; }
  .section { padding: 56px 20px; }
  .section-full { padding: 56px 20px; }
  .divider { margin: 0 20px; }
  .ebook-wrap { padding: 40px 24px; }
  .vote-btns { flex-direction: column; align-items: stretch; }
  .vbtn { text-align: center; }
  footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade { opacity: 1; transform: none; }
}
