* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #160914;
  --bg-soft: #1f0d1b;
  --bg-card: #24121f;
  --primary: #ff1744;
  --primary-dark: #c90035;
  --accent: #d8a7a7;
  --highlight: #f7efe7;
  --text-main: #f7efe7;
  --text-muted: #c9b8b8;
  --border: #3a1a2e;
  --shadow: rgba(255, 23, 68, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: rgba(22, 9, 20, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-image-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-image {
  height: 48px;
  width: auto;
  opacity: 0.92;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--highlight);
}

.header-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(247, 239, 231, 0.08);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s ease;
}

.social img {
  width: 17px;
  height: 17px;
}

.social:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.tree-icon {
  font-size: 18px;
  line-height: 1;
}

.whatsapp {
  background: rgba(37, 211, 102, 0.15);
}

.header-cta {
  text-decoration: none;
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.25s ease;
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--highlight);
  margin: 5px auto;
  transition: 0.25s ease;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(216, 167, 167, 0.12), transparent 30%),
    var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.hero-image-wrap {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  position: relative;
  transform: translateY(-16px);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 9, 20, 0.12), rgba(255, 23, 68, 0.08));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--highlight);
  line-height: 1.15;
}

h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  max-width: 850px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 18px;
}

h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

p {
  color: var(--text-muted);
  font-size: 17px;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
  margin-bottom: 34px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  align-items: center;
}

.application-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 40px var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--highlight);
  color: var(--bg-main);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(247, 239, 231, 0.14);
}

.btn-light {
  background: transparent;
  color: var(--highlight);
  border-color: var(--border);
}

.btn-light:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.section-button {
  margin-top: 28px;
}

/* SECTIONS */

.section {
  padding: 105px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.wide-head {
  max-width: 920px;
}

.section-head p {
  max-width: 720px;
}

/* CARDS */

.cards-grid,
.feature-grid,
.trust-grid,
.process-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.equal-cards {
  align-items: stretch;
}

.info-card,
.trust-card,
.process-card,
.blog-card,
.service-list > div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  transition: 0.25s ease;
}

.info-card {
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.info-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.info-card:hover,
.trust-card:hover,
.process-card:hover,
.blog-card:hover,
.service-list > div:hover {
  border-color: rgba(255, 23, 68, 0.65);
  transform: translateY(-5px);
}

.highlight-card {
  border-color: rgba(255, 23, 68, 0.75);
  box-shadow: 0 24px 80px var(--shadow);
}

.card-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.info-card ul {
  list-style: none;
  margin: 24px 0 28px;
}

.info-card li {
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.info-card li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 22px;
  line-height: 1;
}

/* TWO COLUMN */

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.image-section {
  align-items: center;
}

.two-column p + p {
  margin-top: 18px;
}

.section-image-wrap,
.contact-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.section-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.contact-image-wrap {
  margin-top: 34px;
  max-width: 420px;
}

.contact-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

/* TRUST */

.trust-section {
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.12), transparent 45%),
    var(--bg-main);
}

/* PROCESS */

.process-card ol {
  padding-left: 20px;
}

.process-card li {
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* FAQ ACCORDION */

.faq-group {
  margin-top: 52px;
}

.faq-group:first-of-type {
  margin-top: 0;
}

.faq-label {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 23, 68, 0.65);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 24px;
  color: var(--highlight);
  font-weight: 600;
  font-size: 18px;
  position: relative;
}

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

.faq-item summary::after {
  content: "↓";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
  transition: 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 24px 24px;
  max-width: 900px;
}

/* APPLICATION */

.application-section {
  background:
    linear-gradient(135deg, rgba(255, 23, 68, 0.18), transparent 40%),
    var(--bg-soft);
}

.application-box {
  max-width: 980px;
  text-align: center;
  background: rgba(36, 18, 31, 0.72);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 60px;
}

.application-box .application-options {
  justify-content: center;
  margin-top: 30px;
}

/* FORMS */

.required-label::after {
  content: " *";
  color: var(--primary);
  font-weight: 800;
}

.application-form {
  margin-top: 42px;
  display: grid;
  gap: 24px;
  text-align: left;
}

.form-block,
.form-field,
.checkbox-group {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-main-label,
.application-form label,
.contact-form label {
  color: var(--highlight);
  font-weight: 600;
  font-size: 14px;
}

.application-form input,
.application-form select,
.application-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #130711;
  color: var(--highlight);
  border-radius: 14px;
  padding: 15px 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  outline: none;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.application-form input[type="date"] {
  color-scheme: dark;
}

.application-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  filter: invert(1) brightness(1.8);
  background-color: rgba(255, 23, 68, 0.22);
  border-radius: 8px;
  padding: 5px;
}

.application-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(255, 23, 68, 0.42);
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.radio-card,
.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #130711;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
}

.radio-card input,
.checkbox-card input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--primary);
}

.radio-card span,
.checkbox-card span {
  color: var(--text-muted);
}

.form-note {
  font-size: 14px;
  color: var(--accent);
}

.form-status {
  display: none;
  padding: 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  color: #d7ffe4;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.form-status.error {
  display: block;
  color: #ffe0e6;
  background: rgba(255, 23, 68, 0.12);
  border: 1px solid rgba(255, 23, 68, 0.35);
}

.field-error {
  border-color: var(--primary) !important;
}

.honeypot {
  display: none !important;
}

.submit-btn {
  position: relative;
  cursor: pointer;
  border: none;
}

.submit-btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.submit-btn.is-loading .btn-loader {
  display: inline-block;
}

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


/* ADVANCED FILE UPLOAD */

.upload-grid {
  align-items: start;
}

.upload-field {
  background: #130711;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.upload-help {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.upload-status {
  min-height: 28px;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 14px;
  padding: 0;
}

.upload-status.valid {
  color: #d7ffe4;
}

.upload-status.invalid {
  color: #ffe0e6;
}

.filepond--root {
  margin-bottom: 0 !important;
  font-family: "Inter", sans-serif !important;
  background: transparent !important;
  color: var(--highlight) !important;
}

.filepond--panel-root {
  background-color: #130711 !important;
  border: 1px dashed rgba(216, 167, 167, 0.45) !important;
}

.filepond--drop-label {
  background: #130711 !important;
  color: var(--text-muted) !important;
  border-radius: 14px !important;
}

.filepond--drop-label label {
  color: var(--text-muted) !important;
}

.filepond--label-action {
  color: var(--highlight) !important;
  text-decoration-color: var(--primary) !important;
}

.filepond--list-scroller,
.filepond--list,
.filepond--browser {
  background: transparent !important;
}

.filepond--item-panel {
  background-color: var(--primary) !important;
}

.filepond--file-info,
.filepond--file-status {
  color: #ffffff !important;
}

.filepond--file-info-main,
.filepond--file-info-sub,
.filepond--file-status-main,
.filepond--file-status-sub {
  color: #ffffff !important;
}

.filepond--credits {
  display: none !important;
}

.upload-field.field-error,
.upload-field:has(input.field-error) {
  border-color: var(--primary) !important;
}

/* CONTACT */

.contact-section {
  background: var(--bg-main);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
  display: grid;
  gap: 14px;
}

.contact-form textarea,
.application-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 10px;
}

/* BLOG */

.blog-preview {
  background: var(--bg-soft);
}

.center {
  text-align: center;
  margin-top: 36px;
}

/* FINAL CTA */

.final-cta {
  position: relative;
  min-height: 620px;
  padding: 110px 0;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-main);
}

.final-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-image-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 9, 20, 0.88), rgba(22, 9, 20, 0.62)),
    radial-gradient(circle at center, rgba(255, 23, 68, 0.22), transparent 45%);
}

.final-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 30px;
}

.final-cta .hero-actions {
  justify-content: center;
}


/* LEGAL PAGES */

.legal-page {
  padding-top: 82px;
}

.legal-section {
  padding-top: 96px;
}

.legal-container {
  max-width: 980px;
}

.legal-back {
  margin-bottom: 36px;
}

.legal-card {
  margin-top: 28px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  background: #10060e;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--highlight);
}

.footer-socials {
  justify-content: flex-end;
}

.back-to-top {
  position: absolute;
  right: -58px;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: 0.25s ease;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* TABLET */

@media (max-width: 1180px) {
  .header-actions {
    display: none;
  }

  .back-to-top {
    right: 0;
    bottom: -10px;
  }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .reverse-mobile .section-image-wrap {
    order: 2;
  }

  .reverse-mobile > div:last-child {
    order: 1;
  }

  .cards-grid,
  .trust-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    height: 520px;
  }

  .section-image {
    height: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials,
  .footer-links {
    justify-content: center;
  }

  .back-to-top {
    position: static;
    margin: 12px auto 0;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .header-logo-image {
    height: 42px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 16px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 115px 0 70px;
  }

  .hero-image-wrap {
    transform: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-actions .btn:nth-child(3) {
    grid-column: 1 / -1;
  }

  .application-options {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .section {
    padding: 75px 0;
  }

  .hero-image {
    height: 430px;
  }

  .section-image {
    height: 480px;
  }

  .card-image {
    aspect-ratio: 4 / 3;
  }

  .application-box {
    padding: 36px 22px;
  }

  .form-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-image-wrap {
    max-width: 100%;
  }

  .contact-image {
    height: 430px;
  }

  .final-cta {
    min-height: 560px;
  }

  .final-image-bg img {
    object-position: center;
  }
}

/* Upload Fix v4: one Web3Forms Advanced uploader, dark layout, green complete state */
.upload-field-wide {
  grid-column: 1 / -1;
}

.upload-field-wide .filepond--root {
  min-height: 150px;
}

.filepond--item[data-filepond-item-state='process-complete'] .filepond--item-panel,
.filepond--item[data-filepond-item-state='processing-complete'] .filepond--item-panel,
.filepond--item[data-filepond-item-state*='complete'] .filepond--item-panel {
  background-color: #2f9f63 !important;
}

.filepond--item[data-filepond-item-state*='error'] .filepond--item-panel,
.filepond--item[data-filepond-item-state*='invalid'] .filepond--item-panel {
  background-color: var(--primary) !important;
}

.filepond--file-action-button {
  background-color: rgba(0, 0, 0, 0.35) !important;
  color: #ffffff !important;
}

.filepond--file-action-button:hover,
.filepond--file-action-button:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35) !important;
}

input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  filter: invert(1) brightness(2);
}

.filepond--item[data-filepond-item-state='processing-complete'] .filepond--item-panel,
.filepond--item[data-filepond-item-state='process-complete'] .filepond--item-panel,
.filepond--item[data-filepond-item-state='processing-complete'] .filepond--file,
.filepond--item[data-filepond-item-state='process-complete'] .filepond--file {
  background-color: #2f9d62 !important;
}

.filepond--item[data-filepond-item-state*='error'] .filepond--item-panel,
.filepond--item[data-filepond-item-state*='invalid'] .filepond--item-panel {
  background-color: var(--primary) !important;
}

/* Standard Web3Forms File Upload v7 */
.standard-file-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.standard-dropzone {
  min-height: 124px;
  border: 1px dashed rgba(216, 167, 167, 0.48);
  background: #130711;
  border-radius: 16px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.25s ease;
}

.standard-dropzone:hover,
.standard-dropzone.is-dragover {
  border-color: var(--primary);
  background: rgba(255, 23, 68, 0.08);
}

.dropzone-title {
  color: var(--highlight);
  font-weight: 700;
  font-size: 16px;
}

.dropzone-subtitle {
  color: var(--text-muted);
  font-size: 13px;
}

.upload-preview {
  display: none;
  background: rgba(247, 239, 231, 0.06);
  border: 1px solid rgba(216, 167, 167, 0.24);
  border-radius: 14px;
  padding: 12px;
  gap: 12px;
  align-items: center;
}

.upload-preview.is-visible {
  display: flex;
}

.upload-preview img,
.upload-preview video {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #090308;
}

.upload-preview .file-icon {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 23, 68, 0.12);
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.upload-preview .file-meta {
  min-width: 0;
}

.upload-preview .file-name {
  color: var(--highlight);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-preview .file-size {
  color: var(--text-muted);
  font-size: 13px;
}

.upload-field.field-error {
  border-color: var(--primary) !important;
}

.upload-field.is-valid {
  border-color: rgba(37, 211, 102, 0.55);
}

/* Web3Forms Advanced Upload v8 */
.upload-field input[data-advanced="true"] {
  width: 100%;
}

.upload-field .filepond--root {
  margin-top: 14px !important;
  min-height: 124px;
}

.upload-field .filepond--panel-root {
  background-color: #130711 !important;
  border: 1px dashed rgba(216, 167, 167, 0.48) !important;
  border-radius: 16px !important;
}

.upload-field .filepond--drop-label {
  min-height: 124px !important;
  color: var(--text-muted) !important;
  border-radius: 16px !important;
}

.upload-field .filepond--label-action {
  color: var(--highlight) !important;
  font-weight: 700 !important;
  text-decoration-color: var(--primary) !important;
}

.upload-field .filepond--item-panel {
  background-color: var(--primary) !important;
}

.upload-field .filepond--item[data-filepond-item-state*="complete"] .filepond--item-panel,
.upload-field .filepond--item[data-filepond-item-state="process-complete"] .filepond--item-panel,
.upload-field .filepond--item[data-filepond-item-state="processing-complete"] .filepond--item-panel {
  background-color: #2f9d62 !important;
}

.upload-field .filepond--credits {
  display: none !important;
}


/* CONTENTFUL BLOG */

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  text-decoration: none;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  margin-bottom: 22px;
}

.blog-card-date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-card h3 {
  margin-bottom: 12px;
}

.blog-card p {
  margin-bottom: 22px;
}

.blog-card-link {
  margin-top: auto;
  color: var(--highlight);
  font-weight: 700;
  font-size: 14px;
}

.blog-card-placeholder,
.blog-empty,
.blog-error {
  grid-column: 1 / -1;
}

.blog-hero {
  padding: 155px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.18), transparent 34%),
    var(--bg-main);
}

.blog-list-section {
  background: var(--bg-soft);
}

.blog-post-hero {
  padding: 145px 0 52px;
  background: var(--bg-main);
}

.blog-post-wrap {
  max-width: 920px;
}

.blog-post-meta {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 18px;
}

.blog-post-title {
  max-width: 980px;
}

.blog-post-description {
  max-width: 760px;
  font-size: 20px;
}

.blog-post-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--border);
  margin-top: 34px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.blog-post-content {
  max-width: 920px;
  margin: 0 auto;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  margin: 38px 0 16px;
}

.blog-post-content p,
.blog-post-content li {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

.blog-post-content p + p {
  margin-top: 18px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 24px;
  margin: 22px 0;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content a {
  color: var(--highlight);
  text-decoration-color: var(--primary);
  text-underline-offset: 4px;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  margin: 26px 0;
}

.blog-back {
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .blog-hero,
  .blog-post-hero {
    padding-top: 130px;
  }
}

/* ABOUT PAGE */

.about-page {
  padding-top: 82px;
}

.about-hero {
  padding: 150px 0 105px;
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 167, 167, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(36, 18, 31, 0.72), rgba(22, 9, 20, 1)),
    var(--bg-main);
}

.about-hero-inner {
  max-width: 960px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.about-final-cta {
  min-height: auto;
  padding: 105px 0;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.22), transparent 36%),
    var(--bg-soft);
}

.about-final-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 1180px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 115px 0 76px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT TEAM IMAGE SLIDERS */

.team-profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(255, 23, 68, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.team-profile-card.highlight-card {
  border-color: rgba(255, 23, 68, 0.68);
  box-shadow: 0 28px 70px rgba(255, 23, 68, 0.16);
}

.team-profile-card > h3 {
  margin: 22px 0 12px;
  color: var(--text-main);
}

.team-card-copy {
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 18px;
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.team-photo,
.team-slide {
  width: 100%;
  height: 100%;
}

.team-photo {
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.team-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.team-profile-card > .team-photo-wrap > .team-photo {
  position: relative;
}

.team-photo-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 42px 18px 18px;
  background: linear-gradient(to top, rgba(10, 3, 9, 0.94), rgba(10, 3, 9, 0.68), transparent);
}

.team-photo-overlay h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  color: var(--text-main);
}

.team-photo-overlay p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.35;
}

.team-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 23, 68, 0.92);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.team-slider-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.06);
}

.team-slider-btn.prev {
  left: 12px;
}

.team-slider-btn.next {
  right: 12px;
}

@media (max-width: 760px) {
  .team-profile-card {
    padding: 22px;
  }

  .team-slider-btn {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }
}

.compact-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .compact-grid {
    grid-template-columns: 1fr;
  }
}

.feature-grid .info-card {
  min-height: auto;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.creator-services-grid {
  align-items: start;
}

.creator-service-card h3 {
  margin: 22px 0 10px;
}

.ai-creator-slider {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.ai-creator-slider .team-slide {
  width: 100%;
  height: 100%;
}

.ai-creator-slider .section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.ai-benefits-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}

.ai-benefits-grid .trust-card {
  min-height: 100%;
}

.ai-benefits-grid .trust-card h3 {
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.05;
  word-break: keep-all;
}

.ai-benefits-grid .trust-card p {
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .ai-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Leistungen: KI Content für reale Creator - Canva Layout */
.ai-content-section {
  overflow: hidden;
}

.ai-content-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.ai-content-layout .ai-creator-slider {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 650px;
  border-radius: 30px;
}

.ai-content-layout .ai-creator-slider .team-slide,
.ai-content-layout .ai-creator-slider .section-image {
  width: 100%;
  height: 100%;
}

.ai-content-layout .ai-creator-slider .section-image {
  object-fit: cover;
  object-position: center;
}

.ai-content-copy {
  min-width: 0;
  padding-top: 4px;
}

.ai-content-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.ai-content-copy > p:not(.eyebrow) {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.75;
}

.ai-content-copy > p + p {
  margin-top: 22px;
}

.ai-benefit-slider {
  position: relative;
  margin-top: 34px;
  min-height: 205px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 23, 68, 0.26);
  background: linear-gradient(135deg, rgba(46, 18, 37, 0.92), rgba(22, 6, 18, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ai-benefit-slide {
  padding: 32px 82px 32px 36px;
}

.ai-benefit-number {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ai-benefit-slide h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 1.04;
}

.ai-benefit-slide p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
}

.ai-benefit-slider .ai-benefit-btn {
  width: 40px;
  height: 40px;
  font-size: 31px;
}

.ai-benefit-slider .ai-benefit-btn.prev {
  left: auto;
  right: 66px;
}

.ai-benefit-slider .ai-benefit-btn.next {
  right: 18px;
}

@media (max-width: 1180px) {
  .ai-content-layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 36px;
  }

  .ai-benefit-slide h3 {
    font-size: 34px;
  }

  .ai-benefit-slide p {
    font-size: 17px;
  }
}

@media (max-width: 980px) {
  .ai-content-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ai-content-layout .ai-creator-slider {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .ai-benefit-slider {
    min-height: 255px;
  }

  .ai-benefit-slide {
    padding: 28px 28px 78px;
  }

  .ai-benefit-slide h3 {
    font-size: 30px;
  }

  .ai-benefit-slide p {
    font-size: 16px;
  }

  .ai-benefit-slider .ai-benefit-btn.prev {
    left: 28px;
    right: auto;
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .ai-benefit-slider .ai-benefit-btn.next {
    left: 78px;
    right: auto;
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .ai-benefit-slider .ai-benefit-btn:hover {
    transform: scale(1.06);
  }
}

/* Versteckte Info-Seite für Bewerber */
.info-page {
  padding-top: 82px;
}

.info-hero {
  padding: 150px 0 105px;
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.30), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 167, 167, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(36, 18, 31, 0.82), rgba(22, 9, 20, 1)),
    var(--bg-main);
}

.info-highlight-grid .trust-card,
.comparison-card,
.info-role-card,
.recommendation-box {
  min-height: 100%;
}

.info-role-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.info-role-card,
.comparison-card,
.recommendation-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  transition: 0.25s ease;
}

.info-role-card:hover,
.comparison-card:hover,
.recommendation-box:hover {
  border-color: rgba(255, 23, 68, 0.65);
  transform: translateY(-5px);
}

.info-role-card h3,
.comparison-card h3,
.recommendation-box h3 {
  margin-bottom: 14px;
}

.info-role-card ul,
.comparison-card ul,
.compact-info-card ul {
  margin: 22px 0 0 20px;
  color: var(--text-muted);
}

.info-role-card li,
.comparison-card li,
.compact-info-card li {
  margin-bottom: 10px;
}

.compact-info-card {
  min-height: auto;
}

.comparison-label {
  color: var(--highlight);
  font-weight: 700;
  margin-bottom: 18px;
}

.info-faq-list {
  display: grid;
  gap: 16px;
}

.info-faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 26px;
}

.info-faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--highlight);
  font-size: 18px;
}

.info-faq-list details p {
  margin-top: 14px;
  max-width: 900px;
}

.recommendation-box {
  margin-top: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 23, 68, 0.20), transparent 35%),
    linear-gradient(135deg, rgba(46, 18, 37, 0.95), rgba(22, 6, 18, 0.95));
}

@media (max-width: 900px) {
  .info-role-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .info-hero {
    padding: 115px 0 76px;
  }

  .info-role-card,
  .comparison-card,
  .recommendation-box {
    padding: 26px;
  }
}

/* Bewerber-Info Seite v25 */
.info-chat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.info-chat-copy,
.info-chat-card,
.info-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
}

.info-chat-copy {
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.18), transparent 36%),
    var(--bg-card);
}

.info-chat-copy h2,
.info-chat-card h3,
.info-step-card h3 {
  margin-bottom: 16px;
}

.info-chat-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.info-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.info-mini-actions a {
  text-decoration: none;
}

.info-mini-actions .btn {
  min-width: 150px;
  justify-content: center;
  text-align: center;
}

.chat-cookie-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(216, 167, 167, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.chat-cookie-note strong {
  color: var(--highlight);
}

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

.info-step-card .btn {
  margin-top: 22px;
}

.cookie-consent {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
}

.cookie-consent-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(18, 8, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(18px);
}

.cookie-title {
  color: var(--text-main);
  font-weight: 900;
  margin-bottom: 6px;
}

.cookie-consent strong {
  color: var(--highlight);
}

.cookie-consent p {
  margin: 0 0 8px;
  color: var(--text-muted);
}

.cookie-consent a {
  color: var(--accent);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-actions .btn {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .info-chat-layout,
  .info-step-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

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


/* Info-Seite v26 mobile Feinschliff */
@media (max-width: 620px) {
  .info-mini-actions .btn,
  .final-cta .hero-actions .btn,
  .info-step-card .btn {
    width: 100%;
  }

  .info-chat-card img {
    width: 84px;
    height: 84px;
  }
}

/* Angebote-Seite v27 */
.offers-page .offers-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.30), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 167, 167, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(36, 18, 31, 0.78), rgba(22, 9, 20, 1)),
    var(--bg-main);
}

.offer-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.offer-model-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top right, rgba(255, 23, 68, 0.10), transparent 32%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  transition: 0.25s ease;
}

.offer-model-card:hover {
  border-color: rgba(255, 23, 68, 0.65);
  transform: translateY(-5px);
}

.offer-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.offer-badge,
.table-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(247, 239, 231, 0.08);
  border: 1px solid rgba(247, 239, 231, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.offer-badge.warning,
.table-pill.warning {
  color: #ffd7df;
  background: rgba(255, 23, 68, 0.10);
  border-color: rgba(255, 23, 68, 0.30);
}

.table-pill.primary {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
}

.offer-model-subline {
  min-height: 58px;
  margin-bottom: 22px;
}

.offer-price-box {
  margin: 8px 0 24px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(19, 7, 17, 0.88);
  border: 1px solid rgba(216, 167, 167, 0.16);
}

.offer-price-label {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.offer-price-box strong {
  display: block;
  color: var(--highlight);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.offer-price-box span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.offer-model-card ul {
  list-style: none;
  margin-top: auto;
}

.offer-model-card li {
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.offer-model-card li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 22px;
  line-height: 1;
}

.offer-card-warning {
  opacity: 0.86;
}

.offer-card-warning li::before {
  color: var(--accent);
}

.offer-comparison-table {
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--bg-card);
}

.offer-table-row {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.8fr 1.35fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.offer-table-row:last-child {
  border-bottom: none;
}

.offer-table-row > div {
  padding: 20px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.offer-table-row > div:last-child {
  border-right: none;
}

.offer-table-row strong,
.offer-table-head > div {
  color: var(--highlight);
}

.offer-table-head {
  background: rgba(255, 23, 68, 0.12);
}

.offer-table-head > div {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.offers-faq {
  max-width: 980px;
}

@media (max-width: 1180px) {
  .offer-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-table-row {
    grid-template-columns: 0.9fr 0.8fr 0.7fr 1.3fr 0.9fr;
  }
}

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

  .offer-model-subline {
    min-height: auto;
  }

  .offer-comparison-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .offer-table-row,
  .offer-table-head {
    display: block;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--bg-card);
    overflow: hidden;
  }

  .offer-table-head {
    display: none;
  }

  .offer-table-row > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 15px 18px;
  }

  .offer-table-row > div:last-child {
    border-bottom: none;
  }

  .offer-table-row > div::before {
    content: attr(role);
    display: none;
  }

  .offers-page .hero-actions .btn {
    width: 100%;
  }
}

/* Angebote-Seite v28 Korrektur */
.offers-v28 .offer-model-grid-v28 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.offers-v28 .offer-model-card-v28 {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(247, 239, 231, 0.14);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 23, 68, 0.20), transparent 26%),
    linear-gradient(145deg, rgba(47, 19, 38, 0.96), rgba(18, 7, 16, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.offers-v28 .offer-model-card-v28::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 34%, rgba(255,23,68,0.08));
}

.offers-v28 .offer-card-start-v28 {
  border-color: rgba(255, 23, 68, 0.65);
  box-shadow: 0 24px 85px rgba(255, 23, 68, 0.16), 0 24px 70px rgba(0, 0, 0, 0.30);
}

.offers-v28 .offer-card-gold-v28 {
  opacity: 0.92;
  background:
    radial-gradient(circle at 85% 8%, rgba(216, 167, 167, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(45, 31, 35, 0.96), rgba(18, 7, 16, 0.98));
}

.offers-v28 .offer-sticker {
  position: absolute;
  top: 18px;
  right: -38px;
  z-index: 2;
  min-width: 156px;
  padding: 8px 14px;
  transform: rotate(12deg);
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
}

.offers-v28 .offer-sticker-pro,
.offers-v28 .offer-sticker-plan {
  background: linear-gradient(135deg, #ff1744, #9b1130);
}

.offers-v28 .offer-sticker-start {
  background: linear-gradient(135deg, #ff1744, #ff5a7d);
}

.offers-v28 .offer-sticker-warning {
  background: linear-gradient(135deg, #8d6f6f, #3a232d);
}

.offers-v28 .offer-icon-bubble {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 23, 68, 0.18);
  border: 1px solid rgba(255, 23, 68, 0.38);
  font-weight: 900;
}

.offers-v28 .offer-model-card-v28 h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 34px;
}

.offers-v28 .offer-model-subline-v28 {
  position: relative;
  z-index: 1;
  min-height: 54px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.55;
}

.offers-v28 .offer-price-list-v28 {
  position: relative;
  z-index: 1;
  padding: 18px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(12, 4, 11, 0.72);
  border: 1px solid rgba(247, 239, 231, 0.12);
}

.offers-v28 .offer-price-list-v28 p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.offers-v28 .offer-price-list-v28 p:last-child {
  margin-bottom: 0;
}

.offers-v28 .offer-price-list-v28 strong {
  color: var(--highlight);
  font-weight: 900;
}

.offers-v28 .price-time {
  display: inline-flex;
  margin: 10px 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(247, 239, 231, 0.07);
  border: 1px solid rgba(247, 239, 231, 0.12);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.offers-v28 .price-time:first-child {
  margin-top: 0;
}

.offers-v28 .gold-price-v28 p strong {
  display: block;
  font-size: 22px;
}

.offers-v28 .offer-checklist-v28 {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.offers-v28 .offer-checklist-v28 li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.offers-v28 .offer-checklist-v28 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.offers-v28 .offer-card-gold-v28 .offer-checklist-v28 li:last-child::before {
  content: "!";
  color: var(--accent);
}

.offers-v28 .offer-note-v28 {
  position: relative;
  z-index: 1;
  margin: auto 0 18px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.offers-v28 .offer-card-button-v28 {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.offers-v28 .offers-faq {
  max-width: 980px;
}

@media (max-width: 1260px) {
  .offers-v28 .offer-model-grid-v28 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .offers-v28 .offer-model-grid-v28 {
    grid-template-columns: 1fr;
  }

  .offers-v28 .offer-model-card-v28 {
    padding: 28px 20px 22px;
  }

  .offers-v28 .offer-model-subline-v28 {
    min-height: auto;
  }

  .offers-v28 .offer-sticker {
    right: -32px;
    min-width: 144px;
    font-size: 10px;
  }

  .offers-v28 .hero-actions .btn,
  .offers-v28 .offer-card-button-v28 {
    width: 100%;
  }
}

/* Angebote-Seite v30: echtes 2x2 Layout + bereinigte Haken */
.offers-page .offer-model-grid-v28 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(360px, 1fr)) !important;
  gap: 54px 48px !important;
  align-items: stretch !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.offers-page .offer-model-card-v28 {
  width: 100% !important;
  padding: 40px 34px 34px !important;
}

.offers-page .offer-sticker {
  top: 16px !important;
  right: 18px !important;
  transform: rotate(8deg) !important;
  min-width: auto !important;
  max-width: calc(100% - 105px) !important;
  padding: 10px 18px !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.offers-page .offer-price-list-v28 p {
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.offers-page .offer-price-list-v28 p strong {
  font-size: 16px !important;
}

.offers-page .gold-price-v28 p strong {
  font-size: 22px !important;
}

.offers-page .offer-checklist-v28 li {
  font-size: 15px !important;
  line-height: 1.45 !important;
}

@media (max-width: 900px) {
  .offers-page .offer-model-grid-v28 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    max-width: 560px !important;
  }
}

@media (max-width: 520px) {
  .offers-page .offer-model-card-v28 {
    padding: 34px 22px 26px !important;
  }

  .offers-page .offer-sticker {
    right: 12px !important;
    font-size: 10px !important;
    padding: 8px 12px !important;
    max-width: calc(100% - 88px) !important;
  }
}

/* EMPLOYEE / CONTRACT HIDDEN PAGES */

.employee-page .application-section,
.contract-page .section-soft {
  padding-top: 90px;
}

.employee-form-box {
  margin-inline: auto;
}

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

.employee-form-box input[type="file"] {
  padding: 13px 16px;
}

.contract-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(36, 18, 31, 0.72);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 52px;
}

.contract-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 8px 0 28px;
}

.contract-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contract-steps article {
  background: #130711;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.contract-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 23, 68, 0.14);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.contract-steps h3 {
  color: var(--highlight);
  margin-bottom: 8px;
}

.contract-steps p,
.contract-note {
  color: var(--text-muted);
}

.contract-note {
  margin-top: 26px;
}

@media (max-width: 820px) {
  .employee-radio-grid,
  .contract-steps {
    grid-template-columns: 1fr;
  }

  .contract-card {
    padding: 34px 22px;
  }
}

/* Intern / Member Bereich v35 */
.header-member {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.header-member:hover { border-color: rgba(255, 43, 96, .65); color:#fff; }
.internal-body { background: #13000a; }
.internal-login-section,
.internal-app { min-height: 70vh; }
.internal-login-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 28px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
}
.internal-login-copy,
.internal-login-card,
.internal-tile,
.internal-panel,
.rule-card,
.bonus-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(45, 6, 26, .94), rgba(16, 0, 10, .96));
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.internal-login-copy { padding: 48px; }
.internal-login-copy h1,
.internal-hero h1 { color: #fff6ee; }
.internal-login-copy p,
.internal-hero .hero-text { color: rgba(255,255,255,.74); }
.internal-login-card { padding: 34px; }
.internal-login-card h2 { color:#fff6ee; margin-bottom: 8px; }
.internal-login-card p { color: rgba(255,255,255,.66); margin-bottom: 22px; }
.internal-login-card.solo { max-width: 560px; margin: 80px auto; text-align:center; }
.internal-mini-list { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.internal-mini-list span,
.internal-tabs a,
.quick-links a {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  text-decoration:none;
}
.internal-hero { background: radial-gradient(circle at top left, rgba(255,43,96,.25), transparent 34%), linear-gradient(135deg,#220011,#120008); }
.internal-search-wrap { display:flex; gap:12px; align-items:center; justify-content:center; flex-wrap:wrap; margin-top: 24px; }
.internal-search {
  width: min(720px, 100%);
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,0,4,.76);
  color:#fff;
  padding: 0 22px;
  font-size: 1rem;
  outline: none;
}
.internal-search:focus { border-color: rgba(255,43,96,.8); box-shadow: 0 0 0 4px rgba(255,43,96,.14); }
.internal-dashboard-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:18px; }
.internal-tile { display:block; padding:28px; text-decoration:none; color:#fff; min-height:220px; transition: transform .2s ease, border-color .2s ease; }
.internal-tile:hover { transform: translateY(-4px); border-color: rgba(255,43,96,.5); }
.internal-tile span,
.bonus-card span { display:inline-flex; margin-bottom:28px; width:54px; height:54px; align-items:center; justify-content:center; border-radius:18px; background: rgba(255,43,96,.16); color:#ff2b60; font-weight:900; }
.internal-tile h2,
.internal-panel h2,
.rule-card h3,
.bonus-card h2 { color:#fff6ee; }
.internal-tile p,
.internal-panel p,
.rule-card p,
.bonus-card p { color: rgba(255,255,255,.72); }
.internal-tile-download a { color:#fff; font-weight:800; }
.quick-hit-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px; margin-top:24px; }
.internal-tabs { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.rules-alert { padding:18px 20px; border-radius:20px; background: rgba(255,43,96,.13); border:1px solid rgba(255,43,96,.24); color:#fff; margin-bottom:22px; }
.rules-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px; }
.rule-card { padding:24px; min-height:170px; }
.rule-card.is-hidden,
.fibel-card.is-hidden { display:none; }
.internal-panel { margin-top:28px; padding:30px; }
.table-wrap { overflow-x:auto; }
.internal-table { width:100%; border-collapse:collapse; color:rgba(255,255,255,.82); }
.internal-table th,
.internal-table td { padding:15px; border-bottom:1px solid rgba(255,255,255,.10); text-align:left; }
.internal-table th { color:#fff; background:rgba(255,255,255,.06); }
.example-grid,
.bonus-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.example-grid > div { border-radius:20px; background:rgba(255,255,255,.06); padding:18px; color:rgba(255,255,255,.78); }
.screenshot-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.screenshot-grid img { width:100%; border-radius:18px; border:1px solid rgba(255,255,255,.12); display:block; }
.download-strip { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.fibel-card { min-height: 260px; }
.quick-links { display:flex; gap:12px; flex-wrap:wrap; }
.bonus-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-bottom: 28px; }
.bonus-card { padding:28px; }
@media (max-width: 1180px) {
  .header-member { display:none; }
  .internal-dashboard-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rules-grid, .quick-hit-grid, .bonus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .internal-login-grid { grid-template-columns:1fr; padding-top:50px; }
  .internal-login-copy, .internal-login-card, .internal-panel { padding:24px; border-radius:22px; }
  .internal-dashboard-grid, .rules-grid, .quick-hit-grid, .bonus-grid, .example-grid, .screenshot-grid { grid-template-columns:1fr; }
  .internal-search-wrap { align-items:stretch; }
  .internal-search-wrap .btn { width:100%; }
}


/* Intern v36 Feinschliff */
.header-member {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
.btn-normal,
.btn-normal span,
.internal-tabs a,
.quick-links a,
#internalLogout,
#internalLoginForm .submit-btn {
  font-weight: 400 !important;
}
.internal-login-card .form-field + .form-field {
  margin-top: 18px;
}
.dashboard-three {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}
.dashboard-three .internal-tile {
  min-height: 340px;
  overflow: hidden;
}
.internal-tile h2 {
  font-size: clamp(2.05rem, 3vw, 3.15rem);
  line-height: .98;
  word-break: normal;
  overflow-wrap: anywhere;
}
.internal-tile p {
  font-size: 1rem;
  line-height: 1.55;
}
.internal-tabs a,
.quick-links a {
  font-size: .95rem;
}
.rule-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,43,96,.14);
  margin-bottom: 18px;
  font-size: 1.25rem;
}
.rule-card.search-hit {
  border-color: rgba(37,211,102,.8) !important;
  box-shadow: 0 0 0 4px rgba(37,211,102,.12), 0 24px 70px rgba(0,0,0,.35);
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin: 18px 0 28px;
}
.scenario-grid article {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  padding: 22px;
  color: rgba(255,255,255,.76);
}
.scenario-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,43,96,.14);
  margin-bottom: 14px;
}
.scenario-grid h3,
.infothek-grid h3 {
  color: #fff6ee;
  margin-bottom: 8px;
}
.scenario-grid small { color: rgba(255,255,255,.56); }
.infothek-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.fibel-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(45, 6, 26, .94), rgba(16, 0, 10, .96));
  padding: 26px;
  min-height: 260px;
  color: rgba(255,255,255,.76);
}
.fibel-card span {
  width: 50px;
  height: 50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(255,43,96,.15);
  margin-bottom:20px;
}
.quick-panel { margin-top: 28px; }
.bonus-card h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  overflow-wrap: anywhere;
}
.bonus-card span {
  font-size: 1.25rem;
}
.employee-form-box textarea {
  min-height: 180px;
}
@media (max-width: 1180px) {
  .dashboard-three,
  .infothek-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .scenario-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .dashboard-three,
  .infothek-grid { grid-template-columns: 1fr !important; }
  .dashboard-three .internal-tile { min-height: auto; }
}

/* V38 INTERN + BLOG SEO/GEO FEINSCHLIFF */
.btn-danger {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: rgba(255, 43, 96, 0.72) !important;
  box-shadow: 0 16px 34px rgba(255, 23, 68, 0.25) !important;
}

.employee-form-box .compact-field,
.employee-form-box textarea.compact-field {
  min-height: 52px !important;
  height: 52px !important;
  resize: vertical;
}

.related-posts {
  margin-top: 74px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
}

.related-posts h2 {
  margin-bottom: 26px;
}

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

@media (max-width: 900px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

.rules-anchor { scroll-margin-top: 140px; }

/* Mobile Hamburger Actions v44 */
.mobile-nav-action {
  display: none;
}

@media (max-width: 760px) {
  .main-nav .mobile-nav-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 10px;
    border-bottom: none;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
  }

  .main-nav .mobile-nav-member {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .main-nav .mobile-nav-cta {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 43, 96, 0.22);
  }

  .main-nav .mobile-nav-cta:hover {
    background: var(--primary-dark);
  }
}


/* V45 Intern Schulung & Dashboard Update */
.btn-black {
  background:#050005 !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.18) !important;
  box-shadow:0 16px 34px rgba(0,0,0,.28) !important;
}
.internal-dashboard-actions { gap:12px; flex-wrap:wrap; }
.dashboard-four {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
}
.dashboard-four .internal-tile { min-height: 340px; overflow:hidden; }
.training-video-card, .training-question-card, .training-coach-card, .training-next-step {
  border:1px solid rgba(255,255,255,.11);
  border-radius:28px;
  background:linear-gradient(145deg, rgba(45, 6, 26, .94), rgba(16, 0, 10, .96));
  color:rgba(255,255,255,.78);
  box-shadow:0 24px 70px rgba(0,0,0,.32);
}
.training-video-card { padding:28px; }
.training-video-header { display:flex; gap:18px; align-items:flex-start; margin-bottom:22px; }
.training-video-header > span, .training-next-step > span {
  width:56px; height:56px; display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto;
  border-radius:18px; background:rgba(255,43,96,.16); color:#ff2b60; font-weight:900; font-size:1.35rem;
}
.training-video-card h2, .training-question-card h2, .training-coach-card h2, .training-next-step h2 { color:#fff6ee; margin-bottom:10px; }
.training-video-dummy {
  display:block; width:min(980px, 100%); aspect-ratio:16/9; margin:0 auto; border-radius:22px;
  background:radial-gradient(circle at center, rgba(255,43,96,.22), rgba(5,0,5,.96)); border:1px solid rgba(255,255,255,.12);
}
.training-warning { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-top:22px; }
.training-warning > div { border:1px solid rgba(255,255,255,.10); border-radius:22px; background:rgba(255,255,255,.055); padding:20px; }
.training-warning strong { color:#fff; display:block; margin-bottom:8px; }
.training-warning p { margin:0; }
.training-two-col { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr); gap:22px; align-items:stretch; }
.training-question-card, .training-coach-card { padding:28px; }
.training-question-card ul { margin:18px 0 0; padding-left:22px; }
.training-question-card li { margin:10px 0; }
.training-coach-card img { width:100%; max-height:420px; object-fit:cover; border-radius:24px; border:1px solid rgba(255,255,255,.12); margin-bottom:20px; background:rgba(255,255,255,.05); }
.training-next-step { display:flex; gap:18px; align-items:flex-start; padding:26px; margin-top:22px; }
@media (max-width: 1180px) {
  .dashboard-four, .training-warning { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 760px) {
  .dashboard-four, .training-warning, .training-two-col { grid-template-columns: 1fr !important; }
  .dashboard-four .internal-tile { min-height:auto; }
  .training-video-card, .training-question-card, .training-coach-card, .training-next-step { padding:22px; border-radius:24px; }
  .training-next-step, .training-video-header { flex-direction:column; }
}

/* V47 Anonyme Bewertung Intern */
.internal-feedback-section {
  padding-top: 0;
}
.feedback-intro {
  margin-top: 38px;
  margin-bottom: 24px;
}
.feedback-intro h2,
.internal-feedback-form h3,
.employee-rating-card h4 {
  color: #fff6ee;
}
.internal-feedback-form {
  display: grid;
  gap: 22px;
  margin-top: 0;
}
.feedback-block {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(45, 6, 26, .94), rgba(16, 0, 10, .96));
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
  padding: 28px;
}
.feedback-block h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  margin-bottom: 18px;
}
.feedback-help,
.feedback-submit p {
  color: rgba(255,255,255,.68);
  margin-bottom: 18px;
}
.internal-feedback-form .form-field {
  margin-top: 18px;
}
.internal-feedback-form .form-grid .form-field {
  margin-top: 0;
}
.employee-rating-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.employee-rating-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  padding: 20px;
}
.employee-rating-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at center, rgba(255,43,96,.16), rgba(5,0,5,.8));
  margin-bottom: 16px;
  display: block;
}
.employee-rating-card h4 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.admin-time-grid {
  margin-top: 22px;
}
.feedback-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.feedback-submit p {
  margin: 0;
}
.hidden-botcheck {
  display: none !important;
}
@media (max-width: 1180px) {
  .employee-rating-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .feedback-block { padding: 22px; border-radius: 24px; }
  .employee-rating-grid { grid-template-columns: 1fr; }
  .feedback-submit .btn { width: 100%; }
}

.optional-label {
  color: rgba(255,255,255,.58);
  font-weight: 500;
  font-size: 0.9em;
}
.feedback-submit-centered {
  justify-content: center;
  text-align: center;
}
.feedback-submit-centered .btn {
  margin-inline: auto;
}
.internal-feedback-form .form-status {
  margin-bottom: 4px;
}
