/* ============================================================
   DACHATDEIFE.DE — STYLE V2.0  |  Edgy & Premium 2026
   ============================================================ */

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #060204; }
::-webkit-scrollbar-thumb { background: #ff1744; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #ff4d70; }
::selection { background: rgba(255, 23, 68, 0.28); color: #fdf6ef; }

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

/* ─── DESIGN TOKENS ─── */
:root {
  --bg-main:      #090207;
  --bg-soft:      #0e0409;
  --bg-card:      #13060e;

  --primary:      #ff1744;
  --primary-dark: #c90035;
  --primary-bright:#ff4d70;

  --accent:       #d8a7a7;
  --highlight:    #fdf6ef;
  --text-main:    #fdf6ef;
  --text-muted:   #c4b0b0;

  --border:       rgba(255,255,255,0.07);
  --border-red:   rgba(255,23,68,0.45);
  --shadow:       rgba(255,23,68,0.22);

  --glass:        linear-gradient(145deg,rgba(28,10,20,0.88),rgba(10,3,8,0.94));
  --glow-red:     0 0 40px rgba(255,23,68,0.28), 0 20px 60px rgba(0,0,0,0.5);
  --glow-card:    0 0 0 1px rgba(255,23,68,0.28), 0 0 40px rgba(255,23,68,0.12), 0 30px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);

  --ease:         cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-spring:  cubic-bezier(0.34,1.4,0.64,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", 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(9,2,7,0.75);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,23,68,0.08), 0 8px 32px rgba(0,0,0,0.4);
}

.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.95;
  filter: drop-shadow(0 0 12px rgba(255,23,68,0.25));
}

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

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease), text-shadow 0.2s var(--ease);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--highlight);
  text-shadow: 0 0 20px rgba(255,23,68,0.4);
}

.main-nav a:hover::after { width: 100%; }

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

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

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

.social:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255,23,68,0.4);
}

.tree-icon { font-size: 18px; line-height: 1; }
.whatsapp { background: rgba(37,211,102,0.12); }

.header-cta {
  text-decoration: none;
  background: var(--primary);
  background: linear-gradient(135deg, #ff1744, #c90035);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  box-shadow: 0 0 20px rgba(255,23,68,0.35), 0 8px 24px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.header-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform: skewX(-15deg);
  animation: btn-shimmer 5s ease-in-out infinite;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,23,68,0.5), 0 12px 30px rgba(0,0,0,0.35);
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

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

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(255,23,68,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(201,0,53,0.18) 0%, transparent 45%),
    radial-gradient(ellipse 40% 50% at 60% 85%, rgba(216,167,167,0.08) 0%, transparent 40%),
    var(--bg-main);
  animation: hero-shift 12s ease-in-out infinite alternate;
}

.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 rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(255,23,68,0.12),
    0 40px 100px rgba(0,0,0,0.55),
    0 0 80px rgba(255,23,68,0.08);
  position: relative;
  transform: translateY(-16px);
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9,2,7,0.1), rgba(255,23,68,0.06));
  pointer-events: none;
}

/* Glow ring on hero image */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,23,68,0.3), transparent 50%, rgba(255,23,68,0.1));
  z-index: 1;
  pointer-events: none;
}

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

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: "Syne", sans-serif;
  color: var(--highlight);
  line-height: 1.1;
}

h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  max-width: 850px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fdf6ef 0%, #e8d5d5 60%, #d8a7a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(36px, 4vw, 58px);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

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

.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;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.28s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1744 0%, #c90035 100%);
  color: white;
  box-shadow: 0 0 25px rgba(255,23,68,0.38), 0 18px 40px rgba(0,0,0,0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);
  transform: skewX(-15deg);
  animation: btn-shimmer 5s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff2d56 0%, #e0003d 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(255,23,68,0.55), 0 24px 50px rgba(0,0,0,0.4);
}

.btn-secondary {
  background: rgba(253,246,239,0.95);
  color: var(--bg-main);
  font-weight: 700;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(253,246,239,0.18);
  background: #fff;
}

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

.btn-light:hover {
  border-color: rgba(255,23,68,0.5);
  background: rgba(255,23,68,0.06);
  transform: translateY(-3px);
  color: #fff;
}

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

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

/* ─── SECTIONS ─── */
.section { padding: 110px 0; }

.section-soft {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,23,68,0.06) 0%, transparent 50%),
    var(--bg-soft);
  position: relative;
}

.section-soft::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,23,68,0.25), transparent);
}

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

.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(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.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: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  filter: brightness(0.95) saturate(1.1);
  transition: filter 0.3s var(--ease);
}

.info-card:hover .card-image,
.trust-card:hover .card-image { filter: brightness(1.05) saturate(1.2); }

.info-card:hover, .trust-card:hover, .process-card:hover,
.blog-card:hover, .service-list > div:hover {
  border-color: var(--border-red);
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--glow-card);
}

.highlight-card {
  border-color: rgba(255,23,68,0.6) !important;
  box-shadow: 0 0 0 1px rgba(255,23,68,0.25), 0 0 60px rgba(255,23,68,0.15), 0 24px 80px rgba(0,0,0,0.5) !important;
}

.card-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
}

.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: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(255,23,68,0.08),
    0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}

.section-image-wrap::before, .contact-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,23,68,0.06), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.section-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1);
}

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

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

/* ─── TRUST SECTION ─── */
.trust-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,23,68,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(255,23,68,0.06) 0%, transparent 40%),
    var(--bg-main);
  position: relative;
}

/* ─── PROCESS ─── */
.process-card ol { padding-left: 20px; }
.process-card li { color: var(--text-muted); margin-bottom: 10px; }

/* ─── FAQ ─── */
.faq-group { margin-top: 52px; }
.faq-group:first-of-type { margin-top: 0; }

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

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

.faq-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 20px rgba(255,23,68,0.1), 0 12px 40px rgba(0,0,0,0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 26px;
  color: var(--highlight);
  font-weight: 700;
  font-size: 18px;
  position: relative;
  font-family: "Syne", sans-serif;
}

.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: 24px;
  font-weight: 300;
  transition: all 0.25s var(--ease);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%);
  color: var(--primary);
}

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

/* ─── APPLICATION SECTION ─── */
.application-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,23,68,0.2), transparent 55%),
    linear-gradient(180deg, rgba(255,23,68,0.05) 0%, transparent 60%),
    var(--bg-soft);
  position: relative;
}

.application-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,23,68,0.4), transparent);
}

.application-box {
  max-width: 980px;
  text-align: center;
  background: linear-gradient(145deg, rgba(30,10,22,0.85), rgba(10,3,8,0.92));
  border: 1px solid rgba(255,23,68,0.2);
  border-radius: 36px;
  padding: 64px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255,23,68,0.08),
    0 0 80px rgba(255,23,68,0.08),
    0 40px 100px rgba(0,0,0,0.5);
}

.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;
  letter-spacing: 0.02em;
}

.application-form input,
.application-form select,
.application-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,2,4,0.9);
  color: var(--highlight);
  border-radius: 16px;
  padding: 15px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.2s var(--ease);
}

.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: rgba(255,23,68,0.55);
  box-shadow: 0 0 0 3px rgba(255,23,68,0.1);
  background: rgba(8,3,6,0.95);
}

.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: rgba(5,2,4,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.radio-card:hover, .checkbox-card:hover {
  border-color: rgba(255,23,68,0.35);
  background: rgba(10,3,8,0.9);
}

.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.1);
  border: 1px solid rgba(37,211,102,0.3);
}

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

.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.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ─── FILE UPLOAD ─── */
.upload-grid { align-items: start; }

.upload-field {
  background: rgba(5,2,4,0.9);
  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: "Outfit", sans-serif !important;
  background: transparent !important;
  color: var(--highlight) !important;
}

.filepond--panel-root {
  background-color: rgba(5,2,4,0.9) !important;
  border: 1px dashed rgba(216,167,167,0.35) !important;
}

.filepond--drop-label {
  background: rgba(5,2,4,0.9) !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(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.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: 640px;
  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;
  filter: saturate(1.2);
}

.final-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,2,7,0.9), rgba(9,2,7,0.65)),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,23,68,0.2), transparent 60%);
}

.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 ─── */
.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 rgba(255,255,255,0.05);
  padding: 38px 0;
  background: linear-gradient(180deg, #070205, #050104);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,23,68,0.3), transparent);
}

.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;
  font-size: 14px;
  transition: color 0.2s var(--ease);
}

.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: linear-gradient(135deg, #ff1744, #c90035);
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: all 0.25s var(--ease);
  box-shadow: 0 0 20px rgba(255,23,68,0.4);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 30px rgba(255,23,68,0.6);
}

/* ─── SCROLL REVEAL SYSTEM ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── GRADIENT TEXT UTILITY ─── */
.gradient-text {
  background: linear-gradient(135deg, #fdf6ef 0%, #d8a7a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── KEYFRAMES ─── */

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

@keyframes btn-shimmer {
  0% { left: -100%; }
  45% { left: 150%; }
  100% { left: 150%; }
}

@keyframes float {
  0%, 100% { transform: translateY(-16px); }
  50% { transform: translateY(-24px); }
}

@keyframes hero-shift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%;
    filter: hue-rotate(0deg);
  }
  100% {
    background-position: 20% 30%, 80% 20%, 60% 80%;
    filter: hue-rotate(8deg);
  }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,23,68,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,23,68,0.6), 0 0 80px rgba(255,23,68,0.2); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes line-grow {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes border-glow {
  0%, 100% { border-color: rgba(255,23,68,0.2); }
  50% { border-color: rgba(255,23,68,0.6); }
}

/* ─── 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: rgba(12,4,9,0.96);
    border: 1px solid rgba(255,23,68,0.2);
    border-radius: 24px;
    padding: 16px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,23,68,0.08);
  }

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

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

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

  .hero { padding: 115px 0 70px; }
  .hero-image-wrap { transform: none; animation: none; }

  h1 { font-size: 40px; }
  h2 { font-size: 34px; }

  .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: 80px 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; }
}

/* ─── FILE UPLOAD FIX V4 ─── */
.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;
}

/* ─── STANDARD DROPZONE ─── */
.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.35);
  background: rgba(5,2,4,0.9);
  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: all 0.25s var(--ease);
}

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

.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(253,246,239,0.04);
  border: 1px solid rgba(216,167,167,0.18);
  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: #030102;
}

.upload-preview .file-icon {
  width: 84px; height: 84px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,23,68,0.1);
  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.5); }

.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: rgba(5,2,4,0.9) !important; border: 1px dashed rgba(216,167,167,0.35) !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: 20px;
  border: 1px solid var(--border);
  margin-bottom: 22px;
  transition: filter 0.3s var(--ease);
}

.blog-card:hover .blog-card-image { filter: brightness(1.05) saturate(1.15); }

.blog-card-date {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  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(ellipse 60% 50% at 30% 0%, rgba(255,23,68,0.2), transparent 50%),
    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(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  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: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.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(ellipse 60% 55% at 20% 0%, rgba(255,23,68,0.32), transparent 45%),
    radial-gradient(ellipse 40% 45% at 80% 100%, rgba(216,167,167,0.1), transparent 40%),
    linear-gradient(135deg, rgba(40,12,28,0.8), rgba(9,2,7,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(ellipse 60% 60% at 50% 50%, rgba(255,23,68,0.18), transparent 50%),
    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; }
}

/* ─── TEAM CARDS ─── */
.team-profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 30px;
  min-height: 100%;
  background: linear-gradient(145deg, rgba(28,8,20,0.92), rgba(10,3,8,0.96));
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  transition: all 0.35s var(--ease);
}

.team-profile-card:hover {
  border-color: rgba(255,23,68,0.35);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255,23,68,0.12), 0 35px 70px rgba(0,0,0,0.5);
}

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

.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.08);
  background: rgba(255,255,255,0.03);
}

.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.35s var(--ease), transform 0.35s var(--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(6,2,5,0.96), rgba(6,2,5,0.7), 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.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,23,68,0.95), rgba(201,0,53,0.95));
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.2s var(--ease);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.team-slider-btn:hover {
  background: linear-gradient(135deg, #ff2d56, var(--primary));
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 20px rgba(255,23,68,0.4), 0 10px 24px rgba(0,0,0,0.4);
}

.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: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.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; } }

/* ─── AI CONTENT SECTION ─── */
.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: 32px;
}

.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.2);
  background: linear-gradient(135deg, rgba(36,12,28,0.95), rgba(14,4,10,0.95));
  box-shadow: 0 0 40px rgba(255,23,68,0.08), 0 24px 70px rgba(0,0,0,0.4);
}

.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: 12px;
  letter-spacing: 0.2em;
  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); }
}

/* ─── INFO PAGE ─── */
.info-page { padding-top: 82px; }

.info-hero {
  padding: 150px 0 105px;
  background:
    radial-gradient(ellipse 55% 50% at 15% 0%, rgba(255,23,68,0.32), transparent 45%),
    radial-gradient(ellipse 45% 45% at 85% 100%, rgba(216,167,167,0.1), transparent 40%),
    linear-gradient(135deg, rgba(40,12,28,0.85), rgba(9,2,7,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(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(12px);
}

.info-role-card:hover, .comparison-card:hover, .recommendation-box:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: var(--glow-card);
}

.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(--glass);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 26px;
  backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease);
}

.info-faq-list details:hover { border-color: var(--border-red); }
.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(ellipse 60% 60% at 100% 0%, rgba(255,23,68,0.18), transparent 40%),
    linear-gradient(135deg, rgba(36,10,26,0.98), rgba(14,4,10,0.98));
  border-color: rgba(255,23,68,0.15) !important;
}

@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; }
}

/* ─── INFO CHAT LAYOUT ─── */
.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(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(12px);
}

.info-chat-copy {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(255,23,68,0.15), transparent 40%),
    var(--glass);
}

.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.06);
  box-shadow: 0 18px 42px rgba(0,0,0,0.3);
}

.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.16);
  background: rgba(255,255,255,0.03);
}

.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 (Smartsupp) ─── */
.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(10,3,8,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 22px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,23,68,0.06);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(24px);
}

.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%; }
}

@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 PAGE ─── */
.offers-page .offers-hero {
  background:
    radial-gradient(ellipse 60% 55% at 20% 0%, rgba(255,23,68,0.32), transparent 45%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(216,167,167,0.1), transparent 40%),
    linear-gradient(135deg, rgba(40,12,28,0.8), rgba(9,2,7,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: var(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(12px);
}

.offer-model-card:hover {
  border-color: var(--border-red);
  transform: translateY(-8px);
  box-shadow: var(--glow-card);
}

.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(253,246,239,0.07);
  border: 1px solid rgba(253,246,239,0.12);
  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.08);
  border-color: rgba(255,23,68,0.25);
}

.table-pill.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  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(6,2,5,0.9);
  border: 1px solid rgba(216,167,167,0.1);
}

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

.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.88; }
.offer-card-warning li::before { color: var(--accent); }

.offer-comparison-table {
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  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.08); }
.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; }
  .offers-page .hero-actions .btn { width: 100%; }
}

/* ─── ANGEBOTE V28 ─── */
.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(255,255,255,0.07);
  background: linear-gradient(145deg, rgba(32,10,24,0.92), rgba(10,3,8,0.96));
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(12px);
}

.offers-v28 .offer-model-card-v28:hover {
  border-color: var(--border-red);
  transform: translateY(-8px);
  box-shadow: var(--glow-card);
}

.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.05), transparent 34%, rgba(255,23,68,0.05));
}

.offers-v28 .offer-card-start-v28 {
  border-color: rgba(255,23,68,0.5) !important;
  box-shadow: 0 0 0 1px rgba(255,23,68,0.2), 0 0 60px rgba(255,23,68,0.14), 0 24px 70px rgba(0,0,0,0.5) !important;
}

.offers-v28 .offer-card-gold-v28 {
  opacity: 0.92;
  background: linear-gradient(145deg, rgba(38,22,26,0.95), rgba(10,3,8,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: linear-gradient(135deg, #ff1744, #c90035);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  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, #ff4d70); }
.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.15);
  border: 1px solid rgba(255,23,68,0.3);
  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(6,2,5,0.85);
  border: 1px solid rgba(253,246,239,0.08);
}

.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(253,246,239,0.05);
  border: 1px solid rgba(253,246,239,0.1);
  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 V30 ─── */
.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 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: linear-gradient(145deg, rgba(28,10,20,0.88), rgba(8,2,6,0.95));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 52px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.contract-card h2 { font-family: "Syne", sans-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: rgba(6,2,5,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 24px;
  transition: all 0.25s var(--ease);
}

.contract-steps article:hover { border-color: rgba(255,23,68,0.3); }

.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.12);
  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 AREA ─── */
.header-member {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  transition: all 0.2s var(--ease);
}

.header-member:hover { border-color: rgba(255,43,96,0.55); }

.internal-body { background: #0c0008; }
.internal-login-section, .internal-app { min-height: 70vh; }

.internal-login-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.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,0.08);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(38,6,24,0.95), rgba(12,0,8,0.98));
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.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,0.72); }
.internal-login-card { padding: 34px; }
.internal-login-card h2 { color: #fff6ee; margin-bottom: 8px; }
.internal-login-card p { color: rgba(255,255,255,0.64); 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,0.09);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.internal-tabs a:hover, .quick-links a:hover {
  border-color: rgba(255,43,96,0.4);
  color: #fff;
}

.internal-hero {
  background: radial-gradient(ellipse 60% 55% at 20% 0%, rgba(255,43,96,0.25), transparent 45%),
    linear-gradient(135deg, #1e0012, #0c0008);
}

.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,0.12);
  background: rgba(5,0,4,0.8);
  color: #fff;
  padding: 0 22px;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  outline: none;
  transition: all 0.2s var(--ease);
}

.internal-search:focus {
  border-color: rgba(255,43,96,0.7);
  box-shadow: 0 0 0 4px rgba(255,43,96,0.12);
}

.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: all 0.25s var(--ease);
}

.internal-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255,43,96,0.4);
  box-shadow: 0 0 30px rgba(255,43,96,0.1), 0 30px 70px rgba(0,0,0,0.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,0.14);
  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,0.7); }
.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,0.11); border: 1px solid rgba(255,43,96,0.22); 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,0.8); }
.internal-table th, .internal-table td { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }
.internal-table th { color: #fff; background: rgba(255,255,255,0.05); }
.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,0.05); padding: 18px; color: rgba(255,255,255,0.76); }
.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,0.1); 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 ─── */
.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: 0.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: 0.95rem; }

.rule-icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,43,96,0.12);
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.rule-card.search-hit {
  border-color: rgba(37,211,102,0.75) !important;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.1), 0 24px 70px rgba(0,0,0,0.4) !important;
}

.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,0.09);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  padding: 22px;
  color: rgba(255,255,255,0.74);
  transition: all 0.2s var(--ease);
}

.scenario-grid article:hover { border-color: rgba(255,43,96,0.3); }

.scenario-grid span {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,43,96,0.12);
  margin-bottom: 14px;
}

.scenario-grid h3, .infothek-grid h3 { color: #fff6ee; margin-bottom: 8px; }
.scenario-grid small { color: rgba(255,255,255,0.54); }

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

.fibel-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(38,6,24,0.95), rgba(12,0,8,0.98));
  padding: 26px;
  min-height: 260px;
  color: rgba(255,255,255,0.74);
  transition: all 0.25s var(--ease);
}

.fibel-card:hover { border-color: rgba(255,43,96,0.3); }

.fibel-card span {
  width: 50px; height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,43,96,0.13);
  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 ─── */
.btn-danger {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  border-color: rgba(255,43,96,0.6) !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 NAV ACTIONS ─── */
.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.16);
    background: rgba(255,255,255,0.05);
    color: #fff;
  }

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

  .main-nav .mobile-nav-cta:hover { background: linear-gradient(135deg, #ff2d56, var(--primary-dark)); }
}

/* ─── V45 SCHULUNG & DASHBOARD ─── */
.btn-black {
  background: #040003 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.3) !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,0.09);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(38,6,24,0.95), rgba(12,0,8,0.98));
  color: rgba(255,255,255,0.76);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.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,0.14);
  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,0.2), rgba(5,0,5,0.98));
  border: 1px solid rgba(255,255,255,0.1);
}

.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,0.08); border-radius: 22px; background: rgba(255,255,255,0.04); 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, 0.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,0.1); margin-bottom: 20px; background: rgba(255,255,255,0.04); }
.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 FEEDBACK ─── */
.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,0.09);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(38,6,24,0.95), rgba(12,0,8,0.98));
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  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,0.66); 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,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  padding: 20px;
  transition: all 0.25s var(--ease);
}

.employee-rating-card:hover { border-color: rgba(255,43,96,0.3); }

.employee-rating-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(circle at center, rgba(255,43,96,0.14), rgba(5,0,5,0.85));
  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,0.56); 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; }
