/* Vorpp website styles */
:root {
  --navy: #0b4650;
  --navy-deep: #07323a;
  --blue: #0f7c78;
  --sky: #22a699;
  --sky-soft: #e2f4f1;
  --ink: #0f1f24;
  --text: #2b3a3f;
  --muted: #5a6b70;
  --line: #dce7e6;
  --soft: #f3f8f7;
  --white: #ffffff;
  --ok: #1f8a5b;
  --err: #b42318;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(12, 32, 36, .05), 0 8px 28px rgba(12, 32, 36, .07);
  --shadow-lg: 0 2px 6px rgba(12, 32, 36, .06), 0 24px 60px rgba(12, 32, 36, .12);
  --max: 1180px;
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
:lang(zh) body, html:lang(zh-Hans) body { line-height: 1.8; }
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
html:lang(zh-Hans) h1, html:lang(zh-Hans) h2, html:lang(zh-Hans) h3 { letter-spacing: 0; line-height: 1.3; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 750; }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 720; }
h3 { font-size: 1.2rem; font-weight: 680; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.35em; border-radius: 999px; font-weight: 650; font-size: 1rem;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  font-family: inherit; line-height: 1.2; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(15, 124, 120, .28); }
.btn-primary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sky-soft); color: var(--navy); transform: translateY(-1px); }
.btn-sm { padding: .6em 1.05em; font-size: .92rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-in { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--navy); flex: none; }
.brand img { width: 50px; height: auto; }
.wordmark { font-size: 1.12rem; letter-spacing: .14em; color: var(--navy); line-height: 1; font-family: var(--font-display); }
.wordmark b { font-weight: 800; }
.wordmark span { font-weight: 400; color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a.nav-link {
  color: var(--text); text-decoration: none; font-weight: 560; font-size: .97rem;
  padding: .5em .8em; border-radius: 8px;
}
.main-nav a.nav-link:hover { color: var(--blue); background: var(--soft); }
.main-nav a.nav-link[aria-current="page"] { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .92rem; color: var(--text);
  padding: .45em .7em; border-radius: 8px; border: 1px solid var(--line); background: #fff;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary svg { width: 16px; height: 16px; }
.lang[open] summary { border-color: var(--sky); }
.lang ul {
  position: absolute; right: 0; top: calc(100% + 8px); margin: 0; padding: 6px; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); min-width: 160px;
}
.lang li a { display: flex; justify-content: space-between; gap: 12px; padding: .5em .75em; border-radius: 8px; text-decoration: none; color: var(--text); font-size: .95rem; }
.lang li a:hover { background: var(--soft); color: var(--blue); }
.lang li a[aria-current="true"] { color: var(--blue); font-weight: 650; }
.lang li a small { color: var(--muted); font-weight: 500; }

.menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .header-in { gap: 12px; height: 66px; }
  .brand img { width: 44px; }
  .menu-btn { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 66px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none; gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a.nav-link { padding: .8em .6em; font-size: 1.05rem; border-bottom: 1px solid var(--soft); border-radius: 0; }
  .main-nav .btn { margin-top: 12px; }
  .header-actions { margin-left: auto; }
  .header-actions .btn-cta { display: none; }
}
@media (min-width: 981px) { .main-nav .btn { display: none; } }
@media (max-width: 420px) { .wordmark { font-size: .98rem; letter-spacing: .1em; } }

/* ---------- Language notice ---------- */
.lang-notice {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; margin: 0 auto; max-width: 520px;
  background: var(--ink); color: #fff; border-radius: 14px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; box-shadow: var(--shadow-lg); font-size: .95rem;
}
.lang-notice p { margin: 0; flex: 1 1 200px; }
.lang-notice .btn { padding: .5em 1em; font-size: .9rem; }
.lang-notice .stay { background: transparent; color: #c3d9d6; border: 0; cursor: pointer; font: inherit; padding: .5em .6em; }

/* ---------- Sections ---------- */
section { padding: clamp(64px, 9vw, 112px) 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}
html:lang(zh-Hans) .eyebrow { letter-spacing: .08em; font-size: .9rem; }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--navy), var(--sky)); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px); background:
  radial-gradient(1000px 520px at 88% 20%, #dff2ee 0%, rgba(223, 242, 238, 0) 70%),
  linear-gradient(180deg, #fbfdfd 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: .45em; }
.hero .lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 18px; }
.hero-note { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--muted); max-width: 560px; }
.hero-note svg { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 3px; }
.hero-visual { position: relative; aspect-ratio: 1 / .86; }
.hero-visual .mark { position: absolute; inset: 8% 0 auto 4%; width: 92%; filter: drop-shadow(0 30px 50px rgba(35, 40, 112, .18)); }
.float-card {
  position: absolute; background: rgba(255, 255, 255, .96); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px 12px 12px; display: flex; gap: 12px; align-items: center; box-shadow: var(--shadow-lg);
  font-size: .9rem; line-height: 1.35; max-width: 270px; animation: float 6s ease-in-out infinite;
}
.float-card b { display: block; color: var(--ink); font-size: .95rem; }
.float-card span { color: var(--muted); }
.float-card .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; }
.float-card .ic svg { width: 21px; height: 21px; }
.fc1 { left: -2%; top: 2%; }
.fc2 { right: -2%; top: 44%; animation-delay: -2s; }
.fc3 { left: 8%; bottom: 0; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } html { scroll-behavior: auto; } }

.page-hero { padding: clamp(44px, 6vw, 84px) 0 clamp(52px, 6vw, 84px); background:
  radial-gradient(900px 420px at 92% 0%, #dff2ee 0%, rgba(223, 242, 238, 0) 70%), linear-gradient(180deg, #fbfdfd, #fff); position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 880px; font-size: clamp(2rem, 4.2vw, 3.3rem); }
.page-hero .lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 720px; }
.page-hero .btn { margin-top: 18px; }
.page-hero .deco { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 380px; opacity: .1; z-index: 0; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 26px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; width: 100%; margin: 12px auto 0; }
  .page-hero .deco { display: none; }
}
@media (max-width: 520px) {
  .hero-cta .btn { width: 100%; }
  .float-card { font-size: .82rem; padding: 9px 12px 9px 9px; max-width: 220px; }
  .float-card .ic { width: 34px; height: 34px; }
}

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease; overflow: hidden;
}
.pillar::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--c); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--c); color: #fff; margin-bottom: 22px; }
.pillar .ic svg { width: 27px; height: 27px; }
.pillar h3 { font-size: 1.4rem; }
.pillar p { color: var(--muted); }
.pillar ul { list-style: none; padding: 0; margin: 4px 0 26px; }
.pillar li { display: flex; gap: 10px; padding: 7px 0; border-top: 1px solid var(--soft); font-size: .96rem; }
.pillar li svg { width: 18px; height: 18px; color: var(--c); flex: none; margin-top: 4px; }
.pillar .more { margin-top: auto; font-weight: 650; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; color: var(--c); }
.pillar .more svg { width: 18px; height: 18px; transition: transform .15s; }
.pillar .more:hover svg { transform: translateX(4px); }
.stretched::after { content: ""; position: absolute; inset: 0; }
.c-software { --c: var(--navy); }
.c-sourcing { --c: var(--blue); }
.c-marketing { --c: var(--sky); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding-top: 70px; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 750; font-size: 1.05rem; color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--sky));
}
.steps li::after { content: ""; position: absolute; top: 26px; left: 64px; right: -10px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: .35em; }
.steps p { color: var(--muted); font-size: .98rem; margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .steps li::after { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .steps li { padding: 0 0 0 72px; min-height: 52px; }
}

/* ---------- Feature grid ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: border-color .2s, box-shadow .2s; }
.feature:hover { border-color: #bfdcd8; box-shadow: var(--shadow); }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.feature .ic svg { width: 23px; height: 23px; }
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }
.section-soft .feature { box-shadow: none; }
@media (max-width: 900px) { .grid3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid3 { grid-template-columns: 1fr; } }

/* ---------- Highlight ---------- */
.highlight {
  position: relative; overflow: hidden; border-radius: 22px; color: #d8ebe8;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--blue) 100%);
  padding: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.highlight h2 { color: #fff; }
.highlight p { font-size: 1.08rem; margin: 0; }
.highlight ul { list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
.highlight li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); color: #fff; font-weight: 520; }
.highlight li:last-child { border-bottom: 0; }
.highlight li svg { width: 22px; height: 22px; flex: none; color: #7fd6c9; margin-top: 2px; }
.highlight .deco { position: absolute; right: -80px; bottom: -70px; width: 360px; opacity: .08; }
@media (max-width: 860px) { .highlight { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Split / chips ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.split p { color: var(--muted); font-size: 1.08rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55em 1.05em; font-weight: 560; font-size: .96rem; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.chips li svg { width: 16px; height: 16px; color: var(--sky); }
.list-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; margin: 0; padding: 0; }
.list-cards li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; display: flex; gap: 12px; align-items: center; font-weight: 580; color: var(--ink); }
.list-cards li svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 520px) { .list-cards { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-weight: 650; color: var(--ink); font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { color: var(--muted); padding: 0 40px 22px 0; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 clamp(64px, 9vw, 110px); }
.cta-box {
  position: relative; overflow: hidden; border-radius: 24px; padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 50%, var(--blue));
  color: #d3e8e5; display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
}
.cta-box h2 { color: #fff; margin-bottom: .3em; }
.cta-box p { margin: 0; font-size: 1.1rem; max-width: 620px; position: relative; }
.cta-box .btn { position: relative; z-index: 1; }
.cta-box .deco { position: absolute; right: -50px; bottom: -70px; width: 340px; opacity: .08; pointer-events: none; }
@media (max-width: 760px) { .cta-box { grid-template-columns: 1fr; } .cta-box .btn { width: 100%; } }

.also { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.also a { position: relative; display: flex; gap: 18px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); background: #fff; transition: box-shadow .2s, transform .2s; }
.also a:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.also .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--c); color: #fff; display: grid; place-items: center; flex: none; }
.also .ic svg { width: 25px; height: 25px; }
.also b { display: block; font-size: 1.12rem; }
.also span { color: var(--muted); font-size: .95rem; }
@media (max-width: 700px) { .also { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.prose { max-width: 760px; }
.prose p { font-size: 1.1rem; color: var(--text); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .grid2 { grid-template-columns: 1fr; } }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.contact-aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.aside-card { background: var(--soft); border-radius: var(--radius); padding: 26px; }
.aside-card h2 { font-size: 1.2rem; }
.aside-card ol { margin: 0; padding: 0; list-style: none; counter-reset: a; }
.aside-card ol li { position: relative; padding: 0 0 14px 40px; font-size: .96rem; }
.aside-card ol li::before { counter-increment: a; content: counter(a); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: .85rem; display: grid; place-items: center; }
.aside-card .conf { display: flex; gap: 10px; font-size: .93rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin: 4px 0 0; }
.aside-card .conf svg { width: 20px; height: 20px; flex: none; color: var(--blue); }
.aside-card.mail p { margin: 0; font-size: .96rem; }
.aside-card.mail a { font-weight: 650; overflow-wrap: anywhere; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } .contact-aside { position: static; } }

.brief { display: grid; gap: 26px; }
.brief fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px 28px; margin: 0; background: #fff; min-width: 0; }
.brief legend { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); padding: 0 10px; margin-left: -10px; display: flex; align-items: center; gap: 12px; }
.brief legend .n { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--navy), var(--sky)); color: #fff; display: grid; place-items: center; font-size: .95rem; }
.hint { color: var(--muted); font-size: .93rem; margin: 2px 0 18px; }
.svc-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-choice { position: relative; }
.svc-choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.svc-choice label {
  display: flex; align-items: center; gap: 12px; padding: 16px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; font-weight: 620; color: var(--ink); transition: border-color .15s, background .15s; height: 100%;
}
.svc-choice label .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--soft); color: var(--blue); display: grid; place-items: center; flex: none; transition: background .15s, color .15s; }
.svc-choice label .ic svg { width: 20px; height: 20px; }
.svc-choice label .tick { margin-left: auto; width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line); display: grid; place-items: center; color: transparent; flex: none; }
.svc-choice label .tick svg { width: 14px; height: 14px; }
.svc-choice input:checked + label { border-color: var(--blue); background: #eef8f6; }
.svc-choice input:checked + label .ic { background: var(--blue); color: #fff; }
.svc-choice input:checked + label .tick { background: var(--blue); border-color: var(--blue); color: #fff; }
.svc-choice input:focus-visible + label { outline: 3px solid var(--sky); outline-offset: 2px; }
.svc-error { color: var(--err); font-size: .92rem; margin: 10px 0 0; }
@media (max-width: 560px) { .svc-choices { grid-template-columns: 1fr; } }

.subgroup { border-top: 1px dashed var(--line); margin-top: 24px; padding-top: 22px; }
.subgroup h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.subgroup h3 svg { width: 20px; height: 20px; color: var(--blue); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 620; font-size: .95rem; color: var(--ink); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: #fff; width: 100%;
  border: 1.5px solid var(--line); border-radius: 10px; padding: .75em .9em; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b70' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8em center; background-size: 18px; padding-right: 2.4em; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(34, 166, 153, .18); }
.field input::placeholder, .field textarea::placeholder { color: #95a5a8; }
.field input:user-invalid, .field textarea:user-invalid, .field select:user-invalid { border-color: var(--err); }
@media (max-width: 600px) { .fields { grid-template-columns: 1fr; } .brief fieldset { padding: 24px 18px 20px; } }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--text); }
.consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--blue); }
.submit-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.submit-row .btn { font-size: 1.05rem; padding: 1em 1.8em; }
.submit-row small { color: var(--muted); }
.hp { position: absolute !important; left: -5000px !important; }
.form-msg { border-radius: 14px; padding: 22px 24px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #ecf8f2; border: 1px solid #bfe5d1; color: #11533a; }
.form-msg.ok h2 { color: #11533a; font-size: 1.35rem; }
.form-msg.err { background: #fdf0ef; border: 1px solid #f3c9c4; color: #7a1c14; }
.form-msg p { margin: 0; }

/* ---------- Legal ---------- */
.legal { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.3rem; margin-top: 2em; }
.legal .updated { color: var(--muted); }
.legal dl { display: grid; grid-template-columns: 220px 1fr; gap: 10px 20px; margin: 24px 0; }
.legal dt { font-weight: 650; color: var(--ink); }
.legal dd { margin: 0; }
@media (max-width: 600px) { .legal dl { grid-template-columns: 1fr; gap: 2px; } .legal dd { margin-bottom: 12px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a3b8b5; padding: 64px 0 28px; font-size: .96rem; }
.site-footer a { color: #d4e5e2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .brand { color: #fff; margin-bottom: 16px; }
.foot-brand .wordmark, .foot-brand .wordmark span { color: #fff; }
.foot-brand .brand img { background: #fff; border-radius: 10px; padding: 7px 6px; width: 54px; }
.foot-brand p { max-width: 320px; }
.site-footer h2 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 48px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .88rem; }
.foot-langs { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

.center { text-align: center; }
.mt-l { margin-top: 48px; }
.simple-page { min-height: 55vh; display: flex; align-items: center; }

@media (max-width: 600px) {
  .float-card { display: none; }
  .hero-visual { aspect-ratio: auto; max-width: 300px; margin-top: 28px; }
  .hero-visual .mark { position: static; width: 100%; }
}
html:lang(de) h1, html:lang(de) h2, html:lang(de) h3, .legal { overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
