:root {
  --bg: #f7faf7;
  --surface: #ffffff;
  --surface-soft: #edf6f0;
  --ink: #101814;
  --muted: #5b6b63;
  --line: #dce8e1;
  --forest: #123d2a;
  --forest-2: #0d2a1d;
  --leaf: #4f9f35;
  --mint: #63d9b4;
  --sky: #dff7f0;
  --amber: #d9a441;
  --shadow: 0 22px 65px rgba(16, 24, 20, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 24, 20, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(99, 217, 180, 0.18), transparent 28rem),
    linear-gradient(180deg, #f8fbf8 0%, #eef6f1 45%, #ffffff 100%);
  line-height: 1.6;
}

body.menu-open,
body.cookie-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2990;
  background:
    radial-gradient(circle at 84% 18%, rgba(99, 217, 180, 0.2), transparent 20rem),
    rgba(247, 250, 247, 0.72);
  backdrop-filter: blur(9px) saturate(0.88);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5.4vw, 5.8rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

h3 {
  font-size: 1.28rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 64px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--leaf);
}

.lead {
  max-width: 720px;
  color: #435248;
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 232, 225, 0.75);
  background: rgba(247, 250, 247, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 216px;
  font-weight: 850;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.brand span {
  display: grid;
  line-height: 1.05;
  transition: opacity 180ms ease, filter 180ms ease;
}

.brand small {
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: #304137;
  font-size: 0.92rem;
  font-weight: 720;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
  background: rgba(79, 159, 53, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
  transform-origin: center;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), opacity 180ms ease, width 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(79, 159, 53, 0.32);
  box-shadow: 0 10px 28px rgba(16, 24, 20, 0.1);
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(79, 159, 53, 0.26);
  outline-offset: 3px;
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(237, 246, 240, 0.78);
  border-color: rgba(79, 159, 53, 0.36);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.25);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest), #206b42);
  box-shadow: 0 16px 32px rgba(18, 61, 42, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(18, 61, 42, 0.3);
}

.btn-secondary {
  color: var(--forest);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  min-height: 42px;
  color: var(--forest);
  background: transparent;
  border: 1px solid rgba(18, 61, 42, 0.16);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: 72px 0 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.trust-pill {
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(220, 232, 225, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.trust-pill strong {
  display: block;
  color: var(--forest);
  font-size: 1.25rem;
}

.trust-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
}

.orbital {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(94%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 247, 240, 0.58)),
    radial-gradient(circle at 50% 50%, rgba(79, 159, 53, 0.22), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transform: rotateX(58deg) rotateZ(-18deg);
}

.orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(18, 61, 42, 0.18);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit.two {
  inset: 24%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.orbit::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 42%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(99, 217, 180, 0.18);
}

.visual-card {
  position: absolute;
  left: 22px;
  right: 24px;
  bottom: 56px;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotateY(-12deg) rotateX(8deg);
}

.visual-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.visual-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.visual-logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.status {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(99, 217, 180, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
}

.browser-bars {
  display: grid;
  gap: 10px;
}

.bar {
  height: 12px;
  border-radius: 999px;
  background: #dfeae4;
}

.bar:nth-child(1) {
  width: 82%;
  background: linear-gradient(90deg, var(--forest), var(--mint));
}

.bar:nth-child(2) {
  width: 62%;
}

.bar:nth-child(3) {
  width: 72%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.metric {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(237, 246, 240, 0.9);
}

.metric strong {
  display: block;
  color: var(--forest);
  font-size: 1.5rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 740;
}

.page-hero {
  padding: 84px 0 54px;
  background:
    linear-gradient(135deg, rgba(18, 61, 42, 0.94), rgba(16, 24, 20, 0.92)),
    radial-gradient(circle at 78% 20%, rgba(99, 217, 180, 0.3), transparent 28rem);
  color: #ffffff;
}

.page-hero h1,
.page-hero p {
  color: #ffffff;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.price-card,
.process-card,
.portfolio-card,
.legal-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.process-card,
.legal-card {
  padding: 26px;
}

.card h3,
.service-card h3,
.process-card h3,
.legal-card h3 {
  margin-bottom: 10px;
}

.card p,
.service-card p,
.process-card p {
  margin-bottom: 16px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(79, 159, 53, 0.14), rgba(99, 217, 180, 0.22));
  font-weight: 900;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.price-card:hover,
.process-card:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-meta {
  display: grid;
  gap: 10px;
  margin: auto 0 22px;
}

.service-meta span {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #314238;
  background: var(--surface-soft);
  font-size: 0.9rem;
}

.problem-band {
  padding: 58px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest-2), #173f2d);
}

.problem-band h2,
.problem-band p {
  color: #ffffff;
}

.problem-band p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #35463b;
  font-weight: 680;
}

.feature-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(79, 159, 53, 0.12);
}

.mockup {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 20px;
  border: 1px solid rgba(220, 232, 225, 0.9);
  background: #ffffff;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.mockup::before {
  content: "";
  display: block;
  height: 36px;
  background: linear-gradient(90deg, #183b2b, #2f7b4a);
}

.mockup::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.65), 28px 0 0 rgba(255, 255, 255, 0.38);
}

.mockup-body {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 18px;
  padding: 24px;
}

.mockup-panel {
  min-height: 170px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(18, 61, 42, 0.92), rgba(79, 159, 53, 0.72)),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48% 52%, transparent 52%);
}

.mockup-lines {
  display: grid;
  align-content: center;
  gap: 10px;
}

.mockup-lines span {
  height: 12px;
  border-radius: 999px;
  background: #dfeae4;
}

.mockup-lines span:nth-child(1) {
  height: 24px;
  width: 86%;
  background: var(--forest);
}

.mockup-lines span:nth-child(2) {
  width: 68%;
}

.mockup-lines span:nth-child(3) {
  width: 92%;
}

.mockup-lines span:nth-child(4) {
  width: 48%;
  background: var(--mint);
}

.company-logo-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  min-height: 360px;
  padding: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(99, 217, 180, 0.2), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 240, 0.86));
}

.company-logo-card::before,
.company-logo-card::after {
  content: none;
}

.company-logo-card img {
  width: min(220px, 56vw);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(16, 24, 20, 0.14);
}

.company-logo-card strong,
.company-logo-card span {
  display: block;
}

.company-logo-card strong {
  color: var(--forest);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.company-logo-card span {
  max-width: 360px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-card:focus-visible {
  outline: 3px solid rgba(99, 217, 180, 0.75);
  outline-offset: 4px;
}

.portfolio-mock {
  overflow: hidden;
  height: 210px;
  border-radius: 14px;
  background: #eef6f1;
  border: 1px solid var(--line);
}

.portfolio-browser {
  height: 28px;
  background: var(--forest);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 12px;
  padding: 14px;
}

.portfolio-image {
  height: 140px;
  border-radius: 12px;
  background: var(--leaf);
}

.portfolio-text {
  display: grid;
  align-content: center;
  gap: 8px;
}

.portfolio-text span {
  height: 10px;
  border-radius: 999px;
  background: #d0dfd6;
}

.portfolio-text span:first-child {
  height: 20px;
  width: 72%;
  background: #173f2d;
}

.portfolio-content {
  padding: 18px 4px 2px;
}

.portfolio-content h3 {
  margin-bottom: 8px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card.featured {
  border-color: rgba(79, 159, 53, 0.5);
  background: linear-gradient(180deg, #ffffff, #f2fbf5);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(99, 217, 180, 0.18);
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin: 18px 0 18px;
  color: var(--forest);
  font-size: 2rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card .feature-list {
  margin-bottom: 26px;
}

.price-card .btn {
  margin-top: auto;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 34px;
  width: 2px;
  background: linear-gradient(var(--leaf), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 14px 32px rgba(18, 61, 42, 0.22);
  font-weight: 900;
}

.timeline-content {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.form-card {
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #26352d;
  font-size: 0.9rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(79, 159, 53, 0.75);
  box-shadow: 0 0 0 4px rgba(79, 159, 53, 0.12);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-note,
.legal-note {
  margin-top: 14px;
  color: #65756d;
  font-size: 0.9rem;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.direct-contact h3 {
  margin: 0;
}

.direct-contact a {
  color: var(--forest);
  font-weight: 850;
  word-break: break-word;
}

.cta-band {
  padding: 68px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #101814, #123d2a 72%, #1f6b48);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #101814;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.7fr);
  gap: 34px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
}

body.cookie-required::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(4, 18, 12, 0.42);
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.cookie-banner {
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 5010;
  width: min(500px, calc(100% - 32px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(237, 246, 240, 0.66));
  box-shadow: 0 18px 54px rgba(4, 18, 12, 0.22);
  backdrop-filter: blur(22px) saturate(1.18);
}

.cookie-banner h3 {
  margin-bottom: 4px;
  color: #0d2a1d;
  font-size: 1.05rem;
  line-height: 1.2;
}

.cookie-banner p {
  color: rgba(38, 59, 48, 0.78);
  font-size: 0.9rem;
  line-height: 1.48;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner .cookie-actions {
  gap: 8px;
  margin-top: 13px;
}

.cookie-banner .btn {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.84rem;
}

.cookie-banner .btn:focus {
  outline: none;
}

.cookie-banner .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 217, 180, 0.24);
}

.cookie-modal {
  inset: 0;
  z-index: 5020;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 24, 20, 0.42);
  backdrop-filter: blur(3px);
}

.cookie-panel {
  width: min(560px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(4, 18, 12, 0.24);
  backdrop-filter: blur(20px);
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.switch {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d4ddd8;
  cursor: pointer;
  transition: 160ms ease;
}

.slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 24, 20, 0.18);
  transition: 160ms ease;
}

.switch input:checked + .slider {
  background: var(--forest);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1060px) {
  .nav-links {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    justify-items: stretch;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-actions > .btn {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .section-head,
  .grid-2,
  .grid-3,
  .grid-4,
  .trust-row,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-card {
    left: 0;
    right: 0;
    bottom: 36px;
    padding: 20px;
    transform: rotateY(-6deg) rotateX(4deg);
  }

  .metric-grid,
  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-panel {
    min-height: 120px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 64px 0 42px;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .cookie-banner {
    top: max(10px, env(safe-area-inset-top));
    left: 50%;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    max-height: calc(100dvh - 20px);
    overflow: auto;
    padding: 14px;
  }

  .cookie-banner .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.card h2,
.legal-card h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.has-scroll-video {
  background: #f7faf7;
}

.scroll-video-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #edf6f0;
  pointer-events: none;
}

.scroll-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.34);
  transform-origin: center;
  opacity: 0.44;
  filter: saturate(1.05) contrast(1.05);
}

.scroll-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 247, 0.92) 0%, rgba(247, 250, 247, 0.74) 42%, rgba(247, 250, 247, 0.38) 100%),
    linear-gradient(180deg, rgba(247, 250, 247, 0.86), rgba(237, 246, 240, 0.72) 46%, rgba(255, 255, 255, 0.94));
}

.has-scroll-video .site-header {
  background: rgba(247, 250, 247, 0.78);
}

.has-scroll-video .hero {
  background: transparent;
}

.has-scroll-video .scroll-video-bg {
  z-index: 0;
}

.has-scroll-video > :not(.scroll-video-bg):not(.cookie-banner):not(.cookie-modal):not(.site-header) {
  position: relative;
  z-index: 1;
}

.has-scroll-video > .cookie-banner,
.has-scroll-video > .cookie-modal {
  position: fixed;
}

/* Sichtbarere Variante fuer das scrollgesteuerte Hintergrundvideo. */
body.has-scroll-video {
  background: transparent !important;
}

.has-scroll-video .scroll-video-bg video {
  opacity: 0.86;
  filter: saturate(1.18) contrast(1.12) brightness(0.96);
}

.has-scroll-video .scroll-video-bg::after {
  background:
    linear-gradient(90deg, rgba(247, 250, 247, 0.74) 0%, rgba(247, 250, 247, 0.52) 42%, rgba(247, 250, 247, 0.16) 100%),
    linear-gradient(180deg, rgba(247, 250, 247, 0.46), rgba(237, 246, 240, 0.24) 48%, rgba(255, 255, 255, 0.74));
}

.has-scroll-video .page-hero,
.has-scroll-video .problem-band,
.has-scroll-video .cta-band,
.has-scroll-video .site-footer {
  isolation: isolate;
}

.scroll-video-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.03);
  transform-origin: center;
  opacity: 0.9;
  filter: saturate(1.18) contrast(1.12) brightness(0.96);
}

.scroll-video-bg.frames-ready video {
  opacity: 0;
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(16, 24, 20, 0.72);
  backdrop-filter: blur(18px);
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal-panel {
  width: min(1180px, 100%);
  max-height: min(92vh, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(247, 250, 247, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.portfolio-modal-head,
.portfolio-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px;
}

.portfolio-modal-head {
  border-bottom: 1px solid var(--line);
}

.portfolio-modal-head h2 {
  max-width: none;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
}

.portfolio-modal-head p,
.portfolio-modal-foot p {
  max-width: 720px;
}

.portfolio-modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.portfolio-modal-tabs {
  display: flex;
  gap: 10px;
  padding: 16px 24px 0;
}

.portfolio-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.portfolio-tab.active {
  color: #ffffff;
  background: var(--forest);
  border-color: var(--forest);
}

.portfolio-showcase {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  padding: 18px 24px 0;
}

.portfolio-nav-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  font-size: 2.1rem;
  cursor: pointer;
}

.portfolio-preview-shell {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.portfolio-preview-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.74);
  background: #101814;
  font-size: 0.82rem;
  font-weight: 800;
}

.portfolio-preview-browser span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.portfolio-preview-browser strong {
  margin-left: 10px;
}

.portfolio-preview {
  max-height: 62vh;
  overflow: auto;
  background: var(--preview-bg, #f7faf7);
}

.sample-page {
  color: var(--preview-ink, #101814);
  background: var(--preview-bg, #f7faf7);
}

.sample-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(16, 24, 20, 0.08);
}

.sample-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.sample-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--preview-accent, #4f9f35);
  box-shadow: 0 10px 26px rgba(16, 24, 20, 0.16);
}

.sample-menu {
  display: flex;
  gap: 18px;
  color: rgba(16, 24, 20, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
}

.sample-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 54px 42px 42px;
}

.sample-hero h3 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.sample-hero p {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(16, 24, 20, 0.68);
  font-size: 1.05rem;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sample-primary,
.sample-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 880;
}

.sample-primary {
  color: #ffffff;
  background: var(--preview-accent, #4f9f35);
}

.sample-secondary {
  color: var(--preview-ink, #101814);
  background: #ffffff;
  border: 1px solid rgba(16, 24, 20, 0.12);
}

.sample-visual {
  min-height: 330px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--preview-accent, #4f9f35) 72%, #ffffff), rgba(16, 24, 20, 0.86)),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.42), transparent 12rem);
  box-shadow: 0 24px 60px rgba(16, 24, 20, 0.16);
}

.sample-proof,
.sample-section,
.sample-grid {
  padding: 0 42px 42px;
}

.sample-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sample-proof div,
.sample-mini-card,
.sample-wide-card {
  border: 1px solid rgba(16, 24, 20, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(16, 24, 20, 0.08);
}

.sample-proof div {
  padding: 16px;
}

.sample-proof strong {
  display: block;
  color: var(--preview-accent, #4f9f35);
  font-size: 1.5rem;
}

.sample-section h4 {
  margin: 0 0 14px;
  font-size: 1.8rem;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sample-mini-card {
  min-height: 150px;
  padding: 18px;
}

.sample-mini-card b,
.sample-wide-card b {
  display: block;
  margin-bottom: 8px;
}

.sample-wide-card {
  margin: 0 42px 42px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, color-mix(in srgb, var(--preview-accent, #4f9f35) 14%, #ffffff));
}

.portfolio-modal-foot {
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .portfolio-modal {
    padding: 10px;
  }

  .portfolio-modal-panel {
    max-height: 96vh;
  }

  .portfolio-modal-head,
  .portfolio-modal-foot {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .portfolio-modal-tabs {
    overflow-x: auto;
    padding: 12px 18px 0;
  }

  .portfolio-showcase {
    grid-template-columns: 1fr;
    padding: 14px 18px 0;
  }

  .portfolio-nav-btn {
    display: none;
  }

  .portfolio-preview-shell {
    min-height: 0;
  }

  .portfolio-preview {
    max-height: 58vh;
  }

  .sample-nav,
  .sample-menu,
  .sample-hero,
  .sample-proof,
  .sample-section,
  .sample-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sample-menu {
    display: none;
  }

  .sample-hero,
  .sample-proof,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .sample-hero {
    padding-top: 34px;
  }

  .sample-visual {
    min-height: 220px;
  }

  .sample-wide-card {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.screenshot-mock {
  position: relative;
  height: 240px;
  background: #ffffff;
}

.screenshot-mock::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 28px;
  background: linear-gradient(90deg, #101814, #123d2a);
  z-index: 1;
}

.screenshot-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.portfolio-card:hover .screenshot-mock img {
  transform: scale(1.045) translateY(-8px);
}

.screenshot-preview {
  margin: 0;
  background: #f7faf7;
}

.screenshot-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.screenshot-preview figcaption {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.screenshot-preview figcaption strong {
  color: var(--forest);
}

.screenshot-preview figcaption span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.portfolio-preview:has(.screenshot-preview) {
  background: #ffffff;
}

@media (max-width: 820px) {
  .screenshot-mock {
    height: 220px;
  }

  .screenshot-preview figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Mobile navigation and iPhone layout hardening */
.site-header,
.has-scroll-video .site-header {
  z-index: 3000;
}

@media (max-width: 1060px) {
  .nav-links {
    top: calc(78px + env(safe-area-inset-top, 0px));
    right: 20px;
    left: auto;
    z-index: 3001;
    width: min(330px, calc(100vw - 40px));
    max-height: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    gap: 9px;
    pointer-events: auto;
    transform-origin: top right;
    perspective: 900px;
    transform-style: preserve-3d;
  }

  .nav-links.open {
    display: grid;
    animation: mobileMenuIn 260ms cubic-bezier(.2, .8, .2, 1) both;
  }

  .nav-links.open li {
    animation: mobileMenuItemIn 420ms cubic-bezier(.2, .8, .2, 1) both;
  }

  .nav-links.open li:nth-child(1) { animation-delay: 30ms; }
  .nav-links.open li:nth-child(2) { animation-delay: 55ms; }
  .nav-links.open li:nth-child(3) { animation-delay: 80ms; }
  .nav-links.open li:nth-child(4) { animation-delay: 105ms; }
  .nav-links.open li:nth-child(5) { animation-delay: 130ms; }
  .nav-links.open li:nth-child(6) { animation-delay: 155ms; }
  .nav-links.open li:nth-child(7) { animation-delay: 180ms; }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    position: relative;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 42px 0 16px;
    border: 1px solid rgba(220, 232, 225, 0.76);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow:
      0 12px 28px rgba(16, 24, 20, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(16px) saturate(1.12);
    font-size: 1rem;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 200ms cubic-bezier(.2, .8, .2, 1), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.34;
    transform: translate(-8px, -50%) rotate(45deg);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    background: rgba(237, 246, 240, 0.64);
    border-color: rgba(79, 159, 53, 0.36);
    box-shadow:
      0 16px 34px rgba(16, 24, 20, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transform: translate3d(-4px, -2px, 18px) rotateX(2deg) rotateY(-4deg);
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after,
  .nav-links a.active::after {
    opacity: 0.72;
    transform: translate(0, -50%) rotate(45deg);
  }

  .nav-links a:active {
    transform: translate3d(-2px, 0, 4px) rotateX(0deg) rotateY(-2deg) scale(0.985);
    background: rgba(224, 241, 229, 0.78);
  }

  .menu-toggle {
    position: relative;
    z-index: 3002;
    flex: 0 0 auto;
  }

  body.menu-open .brand {
    opacity: 0.34;
    filter: blur(1px);
  }

  body.menu-open .site-header {
    background: rgba(247, 250, 247, 0.42);
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileMenuItemIn {
  from {
    opacity: 0;
    transform: translate3d(22px, 10px, -90px) rotateX(14deg) rotateY(-18deg) scale(0.92);
  }
  72% {
    opacity: 1;
    transform: translate3d(-3px, -2px, 16px) rotateX(-2deg) rotateY(4deg) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: calc(68px + env(safe-area-inset-top, 0px));
    right: 18px;
    width: min(330px, calc(100vw - 36px));
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero-visual {
    min-height: 360px;
    perspective: none;
  }

  .orbital {
    inset: 26px 0 auto auto;
    width: min(100%, 390px);
    opacity: 0.72;
    transform: rotateX(52deg) rotateZ(-12deg);
  }

  .visual-card {
    right: 0;
    left: 0;
    bottom: 18px;
    min-height: 270px;
    padding: 18px;
    border-radius: 18px;
    transform: none;
  }

  .visual-top {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
  }

  .visual-logo {
    min-width: 0;
  }

  .visual-logo img {
    width: 36px;
    height: 36px;
  }

  .status {
    justify-self: start;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .metric {
    min-height: 92px;
    padding: 14px;
  }

  .mockup {
    min-height: 0;
  }

  .mockup-body {
    padding: 18px;
  }
}


@media (max-width: 760px) {
  body.has-scroll-video,
  body.has-scroll-video.mobile-static-bg {
    background:
      linear-gradient(90deg, rgba(247, 250, 247, 0.78), rgba(247, 250, 247, 0.48)),
      radial-gradient(circle at 70% 12%, rgba(99, 217, 180, 0.2), transparent 20rem),
      linear-gradient(135deg, #edf6f0 0%, #f7faf7 42%, #ffffff 100%) !important;
  }

  .scroll-video-bg {
    display: none !important;
  }
}

/* Startseite: mobile Korrekturen und 3D-Showcase-Veredelung */
.problem-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(99, 217, 180, 0.24), transparent 24rem),
    linear-gradient(135deg, #061b12 0%, #0d3323 58%, #123d2a 100%);
}

.problem-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 217, 180, 0.62), transparent);
}

.problem-band .container {
  position: relative;
  z-index: 1;
}

.problem-band .eyebrow {
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(99, 217, 180, 0.36);
  border-radius: 999px;
  color: #bdfef0;
  background: rgba(99, 217, 180, 0.1);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 12px 36px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

.problem-band .eyebrow::before {
  width: 18px;
  background: #63d9b4;
  box-shadow: 0 0 18px rgba(99, 217, 180, 0.72);
}

.digital-showcase {
  position: relative;
  overflow: hidden;
  color: #f6ffff;
  background:
    radial-gradient(circle at 72% 22%, rgba(117, 168, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 34% 72%, rgba(169, 255, 246, 0.14), transparent 24rem),
    linear-gradient(135deg, #020304 0%, #061113 52%, #020304 100%);
}

.digital-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 62% 44%, #000 0%, transparent 72%);
}

.digital-showcase-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .82fr);
}

.digital-showcase h2,
.digital-showcase p,
.digital-showcase .lead {
  color: #f6ffff;
}

.digital-showcase .lead {
  color: rgba(236, 255, 255, 0.72);
}

.digital-showcase .eyebrow {
  color: #a9fff6;
}

.digital-showcase .eyebrow::before {
  background: linear-gradient(90deg, transparent, #a9fff6);
  box-shadow: 0 0 16px rgba(169, 255, 246, .68);
}

.digital-showcase .feature-list {
  gap: 12px;
}

.digital-showcase .feature-list li {
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(211, 255, 250, 0.14);
  border-radius: 14px;
  color: rgba(246, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}

.digital-showcase .feature-list li::before {
  flex-basis: 10px;
  width: 10px;
  height: 10px;
  margin-top: 0;
  background: #a9fff6;
  box-shadow: 0 0 0 7px rgba(169, 255, 246, 0.1), 0 0 24px rgba(169, 255, 246, 0.68);
}

.particle-showcase-card {
  isolation: isolate;
  min-height: 420px;
  border: 1px solid rgba(211, 255, 250, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 46%, rgba(169, 255, 246, 0.2), transparent 22rem),
    radial-gradient(circle at 46% 42%, #071113 0%, #020304 66%, #000 100%);
  box-shadow: 0 34px 100px rgba(0,0,0,0.44), inset 0 0 80px rgba(169, 255, 246, 0.05);
  transform-style: preserve-3d;
}

.particle-showcase-card::before,
.particle-showcase-card::after {
  content: none;
}

.particle-orbit,
.particle-core,
.particle-sparks span {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.particle-orbit {
  inset: 18%;
  border: 1px solid rgba(169, 255, 246, 0.2);
  transform: rotateX(66deg) rotateZ(-26deg);
  box-shadow: 0 0 42px rgba(169, 255, 246, 0.1);
}

.particle-orbit::before,
.particle-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #a9fff6 42%, #75a8ff);
  box-shadow: 0 0 18px rgba(169, 255, 246, 0.9), 0 0 42px rgba(117, 168, 255, 0.35);
}

.particle-orbit::before { top: 8%; left: 42%; }
.particle-orbit::after { right: 12%; bottom: 24%; width: 7px; height: 7px; }
.particle-orbit.orbit-two { inset: 28%; transform: rotateX(64deg) rotateZ(22deg); opacity: .78; }

.particle-core {
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 34% 28%, #fff 0%, #a9fff6 16%, rgba(117, 168, 255, 0.34) 42%, rgba(2,3,4,0) 72%);
  box-shadow: 0 0 42px rgba(169, 255, 246, 0.58), 0 0 120px rgba(117, 168, 255, 0.24);
}

.particle-sparks span {
  width: 6px;
  height: 6px;
  background: #f6ffff;
  box-shadow: 0 0 18px rgba(169,255,246,.9);
}

.particle-sparks span:nth-child(1) { left: 20%; top: 22%; }
.particle-sparks span:nth-child(2) { left: 34%; top: 66%; width: 4px; height: 4px; }
.particle-sparks span:nth-child(3) { left: 68%; top: 28%; width: 8px; height: 8px; }
.particle-sparks span:nth-child(4) { left: 76%; top: 62%; }
.particle-sparks span:nth-child(5) { left: 48%; top: 14%; width: 5px; height: 5px; }
.particle-sparks span:nth-child(6) { left: 58%; top: 78%; width: 4px; height: 4px; }

.particle-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(211, 255, 250, 0.14);
  border-radius: 16px;
  background: rgba(2, 3, 4, 0.46);
  color: #f6ffff;
  backdrop-filter: blur(18px);
}

.particle-caption strong,
.particle-caption span {
  display: block;
}

.particle-caption span {
  color: rgba(236, 255, 255, 0.62);
  font-size: .9rem;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 34px;
    overflow: visible;
  }

  .hero-copy {
    margin-bottom: 26px;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 26px;
  }

  .trust-pill {
    min-height: 0;
    padding: 12px;
    border-radius: 12px;
  }

  .trust-pill strong {
    font-size: 1.02rem;
    line-height: 1.1;
  }

  .trust-pill span {
    margin-top: 4px;
    font-size: .76rem;
    line-height: 1.22;
  }

  .hero-visual {
    min-height: 330px;
    margin-top: 10px;
  }

  .visual-card {
    bottom: 0;
    min-height: 292px;
  }

  .problem-band {
    padding: 72px 0;
  }

  .problem-band .eyebrow {
    margin-bottom: 22px;
    font-size: .72rem;
  }

  .problem-band h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .digital-showcase {
    padding: 74px 0;
  }

  .digital-showcase-grid {
    gap: 32px;
  }

  .digital-showcase .feature-list li {
    min-height: auto;
    padding: 13px 14px;
    font-size: .98rem;
    line-height: 1.42;
  }

  .particle-showcase-card {
    min-height: 320px;
    border-radius: 18px;
  }

  .particle-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 2px;
  }
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: auto;
    margin-top: 20px;
    padding-top: 26px;
  }

  .visual-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: auto;
    transform: none;
  }

  .orbital {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 760px) {
  .digital-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.particle-showcase-card {
  color: #f6ffff;
  text-decoration: none;
  cursor: pointer;
}

.particle-showcase-card:hover {
  border-color: rgba(169, 255, 246, 0.48);
  box-shadow: 0 38px 120px rgba(0,0,0,0.52), 0 0 70px rgba(169, 255, 246, 0.12), inset 0 0 80px rgba(169, 255, 246, 0.06);
}

/* Hero: sinnvolles 3D-Anfragepanel statt dekorativem Website-Mockup */
.hero-visual .orbital {
  display: none;
}

.inquiry-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-move-x: 0px;
  --tilt-move-y: 0px;
  --tilt-lift: 0px;
  overflow: hidden;
  color: #f7ffff;
  border: 1px solid rgba(79, 159, 53, 0.28);
  background:
    radial-gradient(circle at 72% 18%, rgba(79, 159, 53, 0.24), transparent 18rem),
    radial-gradient(circle at 18% 84%, rgba(18, 61, 42, 0.42), transparent 16rem),
    linear-gradient(135deg, rgba(6, 27, 18, 0.94), rgba(13, 42, 29, 0.9));
  box-shadow: 0 34px 100px rgba(0,0,0,0.34), inset 0 0 70px rgba(79,159,53,0.08);
}

.inquiry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}

.inquiry-card > * {
  position: relative;
  z-index: 1;
}

.inquiry-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.inquiry-label,
.inquiry-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(79,159,53,.28);
  background: rgba(79,159,53,.12);
  color: #c7f0b8;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inquiry-head h2 {
  max-width: 12ch;
  margin-top: 14px;
  color: #f7ffff;
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  line-height: .98;
}

.inquiry-badge {
  color: #ffffff;
  background: linear-gradient(135deg, var(--leaf), #206b42);
}

.inquiry-text {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(236,255,252,.74);
  font-size: 1rem;
}

.inquiry-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.inquiry-flow span,
.inquiry-fields span {
  min-width: 0;
  border: 1px solid rgba(204,255,246,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: rgba(247,255,255,.78);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

.inquiry-flow span {
  min-height: 54px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .82rem;
}

.inquiry-flow .active {
  color: #031212;
  background: linear-gradient(135deg, #a9fff6, #75a8ff);
  box-shadow: 0 16px 42px rgba(117,168,255,.18);
}

.inquiry-fields {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.inquiry-fields span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  font-size: .9rem;
}

.inquiry-fields span::after {
  content: "";
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: rgba(169,255,246,.34);
  box-shadow: 0 0 18px rgba(169,255,246,.18);
}

.inquiry-cta {
  width: 100%;
  margin-top: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest), #206b42);
  box-shadow: 0 18px 46px rgba(18,61,42,.28);
}

@media (max-width: 760px) {
  .inquiry-head {
    display: grid;
  }

  .inquiry-badge {
    justify-self: start;
  }

  .inquiry-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-visual.reveal {
    opacity: 1;
    transform: none;
  }

  .inquiry-card {
    padding: 18px;
  }

  .inquiry-head h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .inquiry-text {
    margin-top: 16px;
    font-size: .93rem;
    line-height: 1.5;
  }

  .inquiry-flow {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 7px;
    margin-top: 18px;
  }

  .inquiry-flow span {
    min-height: 42px;
    padding: 0 6px;
    font-size: .7rem;
  }

  .inquiry-fields {
    margin-top: 14px;
  }

  .inquiry-fields span {
    min-height: 40px;
    font-size: .82rem;
  }

  .inquiry-cta {
    min-height: 44px;
    margin-top: 16px;
    font-size: .86rem;
  }
}

/* Hero-Anfragepanel reduziert: nur Botschaft und CTA */
.inquiry-card {
  min-height: 0;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform;
}

.inquiry-card .inquiry-cta {
  margin-top: 30px;
}

@media (min-width: 761px) {
  .inquiry-card {
    bottom: auto;
    top: 50%;
    transform:
      translateY(calc(-50% + var(--tilt-lift)))
      perspective(1000px)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translate3d(var(--tilt-move-x), var(--tilt-move-y), 0);
    transition: transform 180ms ease-out;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    margin-top: 26px;
  }

  .inquiry-card {
    padding: 24px 18px;
    transform:
      perspective(900px)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translate3d(var(--tilt-move-x), var(--tilt-move-y), 0)
      translateY(var(--tilt-lift));
  }

.inquiry-card .inquiry-cta {
    margin-top: 24px;
  }
}

/* Pakete-Seite: hohe Lesbarkeit statt dunkler Video-Flaechen */
body.pricing-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 159, 53, 0.14), transparent 28rem),
    linear-gradient(180deg, #f7faf7 0%, #eef6f1 48%, #ffffff 100%) !important;
}

.pricing-page main {
  background: transparent;
}

.pricing-page .section {
  background: rgba(247, 250, 247, 0.88);
}

.pricing-page .section:nth-of-type(2n + 1) {
  background: #ffffff;
}

.pricing-page .section.tight {
  margin: 34px auto;
  padding: 58px 0;
  background: linear-gradient(135deg, #f7fbf8, #eaf5ee);
  border-block: 1px solid rgba(18, 61, 42, 0.1);
}

.pricing-page .section.tight h2,
.pricing-page .section.tight p,
.pricing-page .section.tight .lead {
  color: #102018;
}

.pricing-page .section.tight .eyebrow {
  color: var(--forest);
}

.pricing-page .card,
.pricing-page .price-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(16, 24, 20, 0.1);
}

.pricing-page .card p,
.pricing-page .price-card p,
.pricing-page .feature-list li {
  color: #384a40;
}
