/* ================================================================
   impressum-info.com — Light Theme, Clean & Professional
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

:root {
  --primary: #5b3bf5;
  --primary-light: rgba(91,59,245,.1);
  --primary-glow: rgba(91,59,245,.15);
  --accent: #0ea5e9;
  --accent2: #f43f8e;
  --bg: #f8f9fc;
  --bg2: #ffffff;
  --bg3: #f1f3f8;
  --card: #ffffff;
  --card2: #f4f5fa;
  --line: #e5e8f0;
  --line2: #d0d4e0;
  --text: #0f1120;
  --text2: #2d3148;
  --muted: #5a6080;
  --muted2: #8890aa;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15,17,32,.08);
  --shadow-md: 0 8px 40px rgba(15,17,32,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--muted); line-height: 1.7; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: #3d20d4; }
strong { color: var(--text); font-weight: 700; }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  box-shadow: 0 1px 12px rgba(15,17,32,.06);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }
.brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--text); display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: 99px; transition: all .2s; }
.nav-links a:hover { color: var(--text); background: var(--bg3); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 99px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s; white-space: nowrap;
  box-shadow: 0 3px 16px rgba(91,59,245,.3);
}
.btn:hover { background: #4828e0; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(91,59,245,.4); }
.btn.secondary { background: #fff; color: var(--text); border: 1.5px solid var(--line2); box-shadow: var(--shadow); }
.btn.secondary:hover { background: var(--bg3); border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn.large { font-size: 16px; padding: 15px 32px; }
.btn.outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
.btn.outline:hover { background: var(--primary); color: #fff; }

/* ── Cards ── */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.card2 { background: var(--card2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }

/* ── Badge ── */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; }
.badge-primary { background: var(--primary-light); color: var(--primary); border: 1px solid rgba(91,59,245,.2); }
.badge-accent { background: rgba(14,165,233,.1); color: #0284c7; border: 1px solid rgba(14,165,233,.2); }
.badge-pink { background: rgba(244,63,142,.08); color: #db2777; border: 1px solid rgba(244,63,142,.2); }
.badge-green { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.2); }

/* ── Forms ── */
label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
input, select, textarea { width: 100%; padding: 11px 14px; background: #fff; border: 1.5px solid var(--line2); border-radius: var(--radius-sm); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; transition: border-color .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea { resize: vertical; min-height: 90px; }
.field { margin-bottom: 18px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.three { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media(max-width:640px) { .two,.three { grid-template-columns: 1fr; } }
input[type=checkbox] { width: auto; accent-color: var(--primary); }
.check-label { display: flex; align-items: flex-start; gap: 10px; color: var(--text2); font-size: 14px; cursor: pointer; font-weight: 500; }
.checkgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 10px; margin-bottom: 20px; }
.checkgrid label { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #fff; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text2); transition: border-color .2s, background .2s; text-transform: none; letter-spacing: 0; margin: 0; }
.checkgrid label:hover { border-color: var(--primary); background: var(--primary-light); }
.section-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin: 28px 0 18px; padding-bottom: 8px; border-bottom: 2px solid var(--primary-light); }
.notice { font-size: 13px; color: var(--muted); background: var(--bg3); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; }
.hidden { display: none !important; }

/* ── Nav ── */
@media(max-width:700px){ .nav-links a:not(.btn) { display: none; } }

/* ── Footer ── */
.site-footer { margin-top: 80px; border-top: 1px solid var(--line); padding: 56px 24px 32px; background: var(--bg2); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
@media(max-width:900px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted2); }

/* ── Hero ── */
.hero { padding: 80px 24px 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(91,59,245,.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; }
.hero h1 span { color: var(--primary); }
.hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 20px auto 32px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 52px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--line); }
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--text); }
.hero-stat span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feature-card h3 { color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 14px; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
@media(max-width:640px){ .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { background: #fff; border: 1.5px solid var(--line); border-radius: 20px; padding: 36px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 8px 40px rgba(91,59,245,.15); }
.pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.pricing-badge { position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 800; letter-spacing: .06em; background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 99px; text-transform: uppercase; }
.price { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; margin: 14px 0 4px; }
.price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { font-size: 14px; color: var(--text2); padding: 8px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: #059669; font-weight: 800; flex-shrink: 0; }

/* ── Streamer section ── */
.streamer-section { background: linear-gradient(135deg, rgba(91,59,245,.05), rgba(14,165,233,.04)); border: 1.5px solid rgba(91,59,245,.15); border-radius: 24px; padding: 56px; margin: 0 0 60px; }
@media(max-width:640px){ .streamer-section { padding: 28px 20px; } }
.streamer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
@media(max-width:640px){ .streamer-grid { grid-template-columns: 1fr; } }
.streamer-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.streamer-item-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); border: 1px solid rgba(91,59,245,.2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.streamer-item h4 { font-size: 14px; color: var(--text); margin-bottom: 4px; font-weight: 700; }
.streamer-item p { font-size: 13px; color: var(--muted); }

/* ── Section ── */
.section { padding: 72px 24px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 14px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 0; position: relative; max-width: 700px; margin: 0 auto; }
.steps::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: .3; }
.step { text-align: center; padding: 0 16px; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 2px solid var(--primary); color: var(--primary); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(91,59,245,.15); position: relative; z-index: 1; }
.step h3 { color: var(--text); margin-bottom: 8px; font-size: .95rem; }
.step p { font-size: 13px; }

/* ── Trust bar ── */
.trust-bar { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; padding: 36px 24px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.trust-item span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }

/* ── Template select ── */
.tpl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media(max-width:900px){ .tpl-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .tpl-grid { grid-template-columns: 1fr; } }
.tpl-item { position: relative; }
.tpl-item input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.tpl-card { display: block; border-radius: 14px; overflow: hidden; cursor: pointer; border: 2px solid var(--line); background: #fff; transition: border-color .2s, transform .2s, box-shadow .2s; }
.tpl-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(91,59,245,.14); }
.tpl-item input:checked + .tpl-card { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.tpl-preview { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: #f4f5fa; }
.tpl-preview iframe { width: 200%; height: 200%; transform: scale(0.5); transform-origin: top left; pointer-events: none; border: none; }
.tpl-info { padding: 14px 16px; border-top: 1px solid var(--line); }
.tpl-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.tpl-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 5px; }
.tpl-tag { font-size: 11px; background: var(--bg3); color: var(--muted); padding: 2px 7px; border-radius: 99px; border: 1px solid var(--line); }
.tpl-desc { font-size: 12px; color: var(--muted); }
.tpl-badge { display: none; position: absolute; top: 10px; right: 10px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.tpl-item input:checked ~ .tpl-badge { display: block; }

/* Color picker */
.color-section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow); }
.color-section > label { font-size: 12px; font-weight: 700; white-space: nowrap; min-width: 55px; margin: 0; }
.color-row { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch { position: relative; }
.color-swatch input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.color-swatch span { display: block; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; outline: 2px solid transparent; transition: transform .15s, outline-color .15s; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.color-swatch input:checked + span { outline-color: var(--text); transform: scale(1.15); }
.color-swatch span:hover { transform: scale(1.1); }
.custom-color-wrap { display: flex; align-items: center; gap: 8px; }
.custom-color-wrap input[type=color] { width: 34px; height: 34px; border: 1.5px solid var(--line2); border-radius: 50%; cursor: pointer; padding: 0; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn { padding: 6px 16px; border-radius: 99px; border: 1.5px solid var(--line2); background: #fff; color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.submit-area { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 22px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 20px; box-shadow: var(--shadow); }
.selected-info { font-size: 14px; color: var(--muted); }

/* Country blocks */
.country-block { margin-top: 0; }

/* ── Legal pages ── */
.legal-page-wrap { max-width: 800px; margin: 0 auto; padding: 0 24px 60px; }
.legal-page-wrap h2 { font-size: 1.05rem; color: var(--primary); margin: 28px 0 8px; font-weight: 700; }
.legal-page-wrap p { margin-bottom: 12px; }

/* ── Preview ── */
.preview-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.preview-shell iframe { width: 100%; height: 700px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }

/* ── Download page ── */
.dl-page { max-width: 640px; margin: 0 auto; }
.dl-header { border-radius: 20px 20px 0 0; padding: 40px; text-align: center; }
.dl-body { background: #fff; border: 1px solid var(--line); border-top: none; border-radius: 0 0 20px 20px; padding: 36px; box-shadow: var(--shadow); }
.dl-btn-primary { display: block; text-align: center; background: var(--primary); color: #fff; padding: 18px; border-radius: 14px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 12px; text-decoration: none; transition: all .2s; box-shadow: 0 4px 20px rgba(91,59,245,.3); }
.dl-btn-primary:hover { background: #4828e0; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(91,59,245,.4); }
.dl-btn-secondary { display: block; text-align: center; background: var(--bg3); color: var(--text); border: 1.5px solid var(--line2); padding: 14px; border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none; margin-bottom: 24px; transition: all .2s; }
.dl-btn-secondary:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.dl-alert { border-radius: 12px; padding: 14px 18px; margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.dl-alert.success { background: #f0fdf4; border: 1.5px solid #bbf7d0; color: #15803d; }
.dl-alert.warning { background: #fffbeb; border: 1.5px solid #fed7aa; color: #92400e; }
.dl-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; background: var(--bg3); border-radius: 14px; padding: 20px; }
.dl-detail-item span { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted2); display: block; margin-bottom: 3px; font-weight: 700; }
.dl-detail-item strong { font-size: 15px; color: var(--text); }

/* ── FAQ details ── */
details { background: #fff; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; }
details summary { padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--text); font-family: 'Syne', sans-serif; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
details summary::-webkit-details-marker { display: none; }
details[open] summary { border-bottom: 1px solid var(--line); }
details .faq-body { padding: 18px 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── Gradient text ── */
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

