/* Cloudcopy Direct – öffentliche Website (Startseite, Impressum, Datenschutz) */
:root {
  --ink: #15151a;
  --ink-2: #3a3a44;
  --muted: #6b6b76;
  --bg: #f4f4f1;
  --bg-2: #ecece7;
  --card: #ffffff;
  --rule: #e3e3dc;
  --yellow: #ffd400;
  --yellow-soft: #fff6c4;
  --blue: #2f5bff;
  --blue-soft: #e8edff;
  --green: #1f9d55;
  --green-soft: #e3f6ea;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(21, 21, 26, 0.06), 0 12px 32px -12px rgba(21, 21, 26, 0.18);
  --shadow-lg: 0 2px 4px rgba(21, 21, 26, 0.06), 0 30px 70px -20px rgba(21, 21, 26, 0.35);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
::selection { background: var(--yellow); color: var(--ink); }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244, 244, 241, 0.86); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.site-header.scrolled { border-bottom-color: var(--rule); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.logo svg { width: 34px; height: 34px; flex: none; }
.logo-name { font-family: var(--display); font-size: 19px; line-height: 1; letter-spacing: 0.01em; }
.logo-sub { display: block; font-family: var(--font); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a { color: var(--ink-2); text-decoration: none; font-weight: 550; font-size: 15px; padding: 8px 12px; border-radius: 9px; }
.site-nav a:hover { background: var(--bg-2); color: var(--ink); }
.site-nav .nav-login { margin-left: 8px; border: 1px solid var(--rule); background: #fff; }
.site-nav .nav-cta { background: var(--ink); color: #fff; }
.site-nav .nav-cta:hover { background: #000; color: #fff; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--rule); background: #fff; border-radius: 10px; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------------------------------------------------------------- buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: inherit; font-weight: 650; font-size: 16px; line-height: 1; padding: 15px 22px; border-radius: 12px; border: 1px solid transparent; text-decoration: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s, background 0.15s; white-space: nowrap; }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 8px 20px -8px rgba(255, 196, 0, 0.9); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 12px 26px -8px rgba(255, 196, 0, 0.95); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: #cfcfc6; }
.btn[disabled] { opacity: 0.6; cursor: default; transform: none; }

/* ---------------------------------------------------------------- type */
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin: 0 0 14px; }
.h-display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; margin: 0; }
.mark { background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 92%, transparent 92%); padding: 0 0.06em; }
.section { padding: 110px 0; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 { font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 18px; }
.section-head p { font-size: 19px; color: var(--ink-2); margin: 0; }
.lead-p { font-size: 19px; color: var(--ink-2); }

/* ---------------------------------------------------------------- hero */
.hero { padding: 64px 0 0; position: relative; }
.hero::before { content: ""; position: absolute; inset: -120px 0 auto; height: 620px; background: radial-gradient(60% 60% at 18% 20%, rgba(255, 212, 0, 0.22), transparent 70%), radial-gradient(50% 50% at 88% 10%, rgba(47, 91, 255, 0.12), transparent 70%); pointer-events: none; z-index: -1; }
.hero-copy { max-width: 900px; }
.hero h1 { font-size: clamp(44px, 8.2vw, 104px); margin-bottom: 26px; }
.hero-deck { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); max-width: 720px; margin: 0 0 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 36px; margin: 0 0 56px; padding: 0; }
.hero-proof li { display: flex; flex-direction: column; font-size: 14px; color: var(--muted); line-height: 1.35; }
.hero-proof strong { font-size: 17px; color: var(--ink); }
.shot { position: relative; border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--rule); box-shadow: var(--shadow-lg); }
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: #fbfbf9; border-bottom: 1px solid var(--rule); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2e2da; }
.shot-bar span { margin-left: 12px; font-size: 12px; color: var(--muted); background: #f1f1ec; border-radius: 6px; padding: 3px 12px; max-width: 60%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-shot { margin: 0 auto; max-width: 1200px; transform: perspective(2200px) rotateX(4deg); transform-origin: top center; }
.hero-shot-wrap { position: relative; padding: 0 0 20px; }
.hero-note { position: absolute; right: -10px; bottom: 56px; background: var(--ink); color: #fff; border-radius: 14px; padding: 14px 16px; max-width: 290px; box-shadow: var(--shadow-lg); font-size: 14px; line-height: 1.45; }
.hero-note b { display: block; font-size: 15px; margin-bottom: 4px; }
.hero-note .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); margin-right: 6px; }

/* ---------------------------------------------------------------- why */
.why { background: var(--ink); color: #fff; }
.why .section-head p { color: #c9c9d1; }
.why .kicker { color: var(--yellow); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { border: 1px solid #2b2b33; border-radius: var(--radius); padding: 28px; background: #1c1c22; }
.why-card .num { font-family: var(--display); font-size: 15px; color: var(--yellow); margin-bottom: 18px; display: block; }
.why-card h3 { font-size: 22px; line-height: 1.25; margin: 0 0 10px; }
.why-card p { margin: 0; color: #c9c9d1; font-size: 16px; }

/* ---------------------------------------------------------------- funnel */
.funnel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.fstep { position: relative; background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px 20px 20px; box-shadow: 0 1px 2px rgba(21, 21, 26, 0.04); }
.fstep::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--display); font-size: 13px; color: var(--muted); display: block; margin-bottom: 12px; }
.fstep h3 { font-size: 18px; line-height: 1.25; margin: 0 0 6px; }
.fstep p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.tag { position: absolute; top: 18px; right: 16px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; border-radius: 999px; padding: 3px 9px; }
.tag.live { background: var(--green-soft); color: var(--green); }
.tag.soon { background: var(--bg-2); color: var(--muted); }
.fstep.calc { grid-column: span 4; display: flex; gap: 24px; align-items: center; background: var(--yellow-soft); border-color: #f1e39a; }
.fstep.calc::before { display: none; }
.fstep.calc .calc-ico { font-size: 34px; flex: none; }
.fstep.calc h3 { font-size: 20px; }
.fstep.calc .tag { position: static; flex: none; margin-left: auto; }
.funnel-note { margin-top: 18px; font-size: 14.5px; color: var(--muted); }

/* ---------------------------------------------------------------- features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px; }
.feature .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; font-size: 22px; margin-bottom: 18px; }
.feature h3 { font-size: 20px; line-height: 1.25; margin: 0 0 8px; }
.feature p { margin: 0; color: var(--ink-2); font-size: 16px; }

/* ---------------------------------------------------------------- showcase */
.show { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; margin-top: 110px; }
.show.flip { grid-template-columns: 7fr 5fr; }
.show.flip .show-copy { order: 2; }
.show-copy h3 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; margin: 0 0 16px; }
.show-copy p { color: var(--ink-2); margin: 0 0 16px; }
.checks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 30px; color: var(--ink-2); font-size: 16px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px; border-radius: 6px; background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd400' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat; }

/* ---------------------------------------------------------------- rules */
.rules { background: var(--card); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.rule-list { display: grid; gap: 14px; }
.rule { display: flex; gap: 16px; padding: 18px 20px; border-radius: 14px; background: var(--bg); }
.rule .r-ico { flex: none; width: 34px; height: 34px; border-radius: 10px; background: #fff; display: grid; place-items: center; font-size: 17px; border: 1px solid var(--rule); }
.rule b { display: block; font-size: 16.5px; margin-bottom: 2px; }
.rule span { color: var(--ink-2); font-size: 15px; }
.ph { background: var(--yellow-soft); border-radius: 4px; padding: 0 4px; font-weight: 600; }

/* ---------------------------------------------------------------- security */
.sec-grid { display: grid; grid-template-columns: 6fr 6fr; gap: 56px; align-items: center; }
.sec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.sec-item { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 18px; }
.sec-item b { display: block; margin-bottom: 4px; font-size: 16px; }
.sec-item span { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; display: block; }

/* ---------------------------------------------------------------- pricing */
.pricing { display: grid; grid-template-columns: 7fr 5fr; gap: 20px; align-items: stretch; }
.price-card { background: var(--ink); color: #fff; border-radius: 22px; padding: 38px; position: relative; overflow: hidden; }
.price-card::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 212, 0, 0.35), transparent 70%); }
.price-name { font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); }
.price { font-family: var(--display); font-size: clamp(52px, 7vw, 76px); line-height: 1; margin: 14px 0 6px; }
.price small { font-family: var(--font); font-size: 18px; font-weight: 500; color: #c9c9d1; margin-left: 6px; }
.price-sub { color: #c9c9d1; margin: 0 0 26px; }
.price-card .checks li { color: #e6e6ec; }
.price-card .checks li::before { background-color: #2b2b33; }
.price-card .btn { margin-top: 30px; }
.price-side { background: var(--card); border: 1px solid var(--rule); border-radius: 22px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.price-side h3 { margin: 0; font-size: 20px; }
.price-side p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.cost-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 15px; }
.cost-row:last-of-type { border-bottom: 0; }
.cost-row span:last-child { font-weight: 650; text-align: right; }

/* ---------------------------------------------------------------- faq */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 19px; font-weight: 650; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; font-weight: 400; color: var(--muted); transition: transform 0.2s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 22px; color: var(--ink-2); max-width: 760px; }
.faq .a p { margin: 0 0 10px; }

/* ---------------------------------------------------------------- contact */
.contact { background: var(--ink); color: #fff; border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 5fr 7fr; gap: 56px; }
.contact h2 { font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.4vw, 50px); line-height: 1.05; margin: 0 0 18px; }
.contact p { color: #c9c9d1; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .full { grid-column: 1 / -1; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: #e6e6ec; }
.form input, .form select, .form textarea { font: inherit; font-size: 16px; color: var(--ink); background: #fff; border: 1px solid transparent; border-radius: 10px; padding: 12px 14px; width: 100%; }
.form textarea { min-height: 110px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 3px solid var(--yellow); outline-offset: 0; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 450; color: #c9c9d1; font-size: 14px; line-height: 1.5; }
.form .consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--yellow); }
.form .consent a { color: #fff; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-msg { grid-column: 1 / -1; border-radius: 10px; padding: 12px 14px; font-size: 15px; display: none; }
.form-msg.ok { display: block; background: var(--green-soft); color: #115c31; }
.form-msg.err { display: block; background: #ffe4e1; color: #9b1c12; }

/* ---------------------------------------------------------------- footer */
.site-footer { padding: 56px 0 40px; color: var(--muted); font-size: 14.5px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; border-top: 1px solid var(--rule); padding-top: 28px; }
.site-footer a { color: var(--ink-2); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
.footer-links { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }

/* ---------------------------------------------------------------- legal pages */
.legal { max-width: 780px; padding: 56px 0 80px; }
.legal h1 { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; margin: 0 0 28px; }
.legal h2 { font-size: 21px; margin: 38px 0 10px; }
.legal p, .legal li { color: var(--ink-2); }
.legal .box { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 20px 22px; }
.legal .note { font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1020px) {
  .why-grid, .features { grid-template-columns: 1fr 1fr; }
  .funnel { grid-template-columns: 1fr 1fr; }
  .fstep.calc { grid-column: span 2; }
  .show, .show.flip, .rules-grid, .sec-grid, .pricing, .contact { grid-template-columns: 1fr; gap: 36px; }
  .show.flip .show-copy { order: 0; }
  .hero-note { position: static; margin: -40px auto 0; max-width: 520px; transform: none; }
  .hero-shot { transform: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--rule); padding: 10px 16px 18px; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 12px; font-size: 16px; }
  .site-nav .nav-login { margin-left: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 36px; }
  .hero-proof { gap: 12px 24px; margin-bottom: 36px; }
  .why-grid, .features, .funnel, .sec-list, .form { grid-template-columns: 1fr; }
  .fstep.calc { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 10px; }
  .fstep.calc .tag { margin-left: 0; }
  .show { margin-top: 72px; }
  .contact { padding: 30px 20px; border-radius: 20px; }
  .price-card, .price-side { padding: 26px 22px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; flex: 1 1 200px; }
  .shot-bar span { display: none; }
  .footer-links { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-toggle span, .faq summary::after { transition: none; }
}
