.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  padding: 150px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(16, 47, 85, 0.94) 0%, rgba(67, 158, 204, 0.72) 42%, rgba(79, 109, 172, 0.58) 100%),
    linear-gradient(0deg, rgba(var(--rgb-gold-dark), 0.32), rgba(var(--rgb-gold), 0.18) 38%, rgba(199, 186, 203, 0.18)),
    url("https://technostar-deutschland.de/wp-content/uploads/2025/01/Design-ohne-Titel-4-1024x1024.png") center / cover no-repeat;
  color: var(--color-white);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--color-soft));
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.hero::before {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 70px;
  width: min(32vw, 470px);
  aspect-ratio: 170 / 104;
  background: url("../assets/technostar-butterfly-original.png") center / contain no-repeat;
  content: "";
  opacity: 0.32;
  filter: sepia(0.35) saturate(1.2) drop-shadow(0 28px 42px rgba(16, 47, 85, 0.38));
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  display: grid;
  width: min(820px, 100%);
  max-width: none;
  gap: 10px;
  margin: 0 0 14px;
}

.hero-logo__main {
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-logo);
  font-size: 6.05rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 0.86;
  text-shadow:
    0 2px 0 rgba(var(--rgb-gold-bright), 0.26),
    0 24px 44px rgba(16, 47, 85, 0.42);
}

.hero-logo__sub {
  display: grid;
  grid-template-columns: minmax(28px, 120px) auto minmax(28px, 120px);
  align-items: center;
  gap: 16px;
  width: min(620px, 100%);
  color: var(--color-gold-bright);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.55em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-logo__sub::before,
.hero-logo__sub::after {
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--rgb-gold-dark), 0), rgba(var(--rgb-gold), 0.92), rgba(var(--rgb-gold-bright), 0.7));
  content: "";
}

.hero-logo__sub::after {
  background: linear-gradient(90deg, rgba(var(--rgb-gold-bright), 0.7), rgba(var(--rgb-gold), 0.92), rgba(var(--rgb-gold-dark), 0));
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.hero__slogan {
  max-width: 760px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--color-gold-bright), var(--color-champagne) 48%, var(--color-blue-light));
  background-clip: text;
  color: transparent;
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.hero__text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--color-gold-dark), var(--color-gold) 58%, var(--color-gold-bright));
  color: #fff8e8;
  text-shadow: 0 1px 0 rgba(49, 31, 8, 0.42);
  box-shadow: 0 14px 36px rgba(var(--rgb-gold-dark), 0.38);
}

.button--secondary {
  border-color: rgba(var(--rgb-gold-bright), 0.72);
  background: rgba(16, 47, 85, 0.34);
  color: var(--color-white);
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-gold), 0.66);
  border-radius: var(--radius-sm);
  background: var(--color-silver);
  box-shadow: var(--shadow-soft);
}

.proof-item {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 230, 0.98)),
    var(--color-white);
}

.proof-item strong {
  color: var(--color-blue-deep);
  font-size: 1.45rem;
  line-height: 1.1;
}

.proof-item span {
  color: var(--color-muted);
}

.section--intro {
  padding-top: 116px;
  background:
    linear-gradient(180deg, #fbf8ef, var(--color-white));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--color-graphite);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue-deep), var(--color-gold));
  color: var(--color-white);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 0.72rem;
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-gold), 0.54);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(150deg, rgba(16, 47, 85, 0.92), rgba(255, 255, 255, 0.92) 54%, rgba(var(--rgb-gold), 0.28)),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(var(--rgb-gold-dark), 0.2) 50px 51px);
  box-shadow: var(--shadow-tight);
}

.product-stage::before {
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(var(--rgb-gold-bright), 0.42);
  border-radius: var(--radius-sm);
  content: "";
}

.product-stage__image {
  position: relative;
  z-index: 1;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(17, 24, 32, 0.12));
}

.label-preview {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  width: min(230px, calc(100% - 56px));
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xs);
  background:
    linear-gradient(115deg, rgba(var(--rgb-gold), 0.2), transparent 42%),
    linear-gradient(135deg, rgba(16, 47, 85, 0.95), rgba(79, 109, 172, 0.9)),
    var(--color-blue-deep);
  color: var(--color-white);
  box-shadow: var(--shadow-tight);
}

.label-preview span {
  color: var(--color-gold-bright);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.label-preview strong {
  font-size: 1.2rem;
}

.label-preview small {
  color: rgba(255, 255, 255, 0.72);
}

.section--process {
  background:
    linear-gradient(180deg, #fbf8ef, #eef5fa),
    var(--color-soft);
}

.section--products {
  background:
    linear-gradient(180deg, var(--color-white), #f3f8fb),
    var(--color-white);
}

.section--products .section-heading p:last-child {
  max-width: 760px;
  color: var(--color-muted);
}

.product-examples {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-gold), 0.54);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-tight);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.product-card span {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  color: var(--color-blue-deep);
}

.product-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step,
.quality-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-tight);
}

.process-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(var(--rgb-gold), 0.56);
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, rgba(var(--rgb-gold), 0.24), rgba(55, 193, 229, 0.08));
  color: var(--color-blue-deep);
  font-weight: 900;
}

.process-step p,
.quality-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.section--industries {
  background:
    linear-gradient(180deg, var(--color-white), #f8fbfd);
}

.industry-panel p {
  max-width: 680px;
  color: var(--color-muted);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.industry-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(var(--rgb-gold), 0.56);
  border-radius: var(--radius-xs);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(var(--rgb-gold), 0.13)),
    var(--color-white);
  color: var(--color-graphite);
  font-weight: 800;
}

.visual-stack {
  position: relative;
}

.visual-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.visual-note {
  position: absolute;
  right: -22px;
  bottom: 26px;
  display: grid;
  width: min(310px, 78%);
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(var(--rgb-gold-bright), 0.64);
  border-radius: var(--radius-xs);
  background: rgba(16, 47, 85, 0.92);
  box-shadow: var(--shadow-tight);
}

.visual-note strong {
  color: var(--color-gold-bright);
}

.visual-note span {
  color: rgba(255, 255, 255, 0.78);
}

.section--quality {
  background:
    linear-gradient(135deg, rgba(16, 47, 85, 0.98), rgba(79, 109, 172, 0.93) 48%, rgba(var(--rgb-gold-dark), 0.34)),
    var(--color-ink);
  color: var(--color-white);
}

.section--quality .section-heading h2 {
  max-width: 920px;
}

.section--quality .eyebrow {
  color: var(--color-gold-bright);
}

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

.quality-card {
  border-color: rgba(var(--rgb-gold-bright), 0.44);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(var(--rgb-gold), 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.quality-card h3 {
  color: var(--color-white);
}

.quality-card p {
  color: rgba(255, 255, 255, 0.74);
}

.section--faq {
  background:
    linear-gradient(180deg, #f8fbfd, var(--color-white));
}

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

.faq-item {
  border: 1px solid rgba(var(--rgb-gold), 0.42);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-tight);
}

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--color-blue-deep);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--rgb-gold), 0.56);
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, rgba(var(--rgb-gold), 0.14), rgba(50, 173, 230, 0.08));
  color: var(--color-gold);
  content: "+";
  display: grid;
  place-items: center;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: -4px 22px 22px;
  color: var(--color-muted);
}

.cta-section {
  padding: 102px 0;
  background:
    linear-gradient(115deg, rgba(16, 47, 85, 0.96), rgba(67, 158, 204, 0.72) 42%, rgba(var(--rgb-gold-dark), 0.46)),
    url("https://technostar-deutschland.de/wp-content/uploads/2024/11/Solutions-for-everyone-1-1024x341.png") center / cover no-repeat;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 64px;
  align-items: start;
}

.cta-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-copy h2 {
  color: var(--color-white);
}

.plain-link {
  display: inline-flex;
  color: var(--color-gold-bright);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--color-graphite);
  font-size: 0.92rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-xs);
  background: var(--color-white);
  color: var(--color-ink);
  outline: none;
}

.lead-form input,
.lead-form select {
  height: 46px;
  padding: 0 13px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
  padding: 12px 13px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(50, 173, 230, 0.18);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--color-blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status--success {
  color: #166534;
}

.form-status--error {
  color: #9f1239;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
