:root{
  --kudi-blue:#2a2444;
  --kudi-blue-dark:#1c1833;
  --kudi-orange:#8b5cf6;
  --kudi-orange-dark:#6d3de8;
  --kudi-light:#f7f5ff;
  --kudi-light-2:#fcfbff;
  --kudi-text:#2d2d3a;
  --kudi-muted:#6f6f85;
  --kudi-border:#e8e4f3;
  --kudi-white:#ffffff;

  --shadow-soft:0 10px 30px rgba(28,24,51,0.06);
  --shadow-medium:0 18px 40px rgba(28,24,51,0.10);
  --shadow-strong:0 24px 60px rgba(28,24,51,0.16);

  --radius-s:12px;
  --radius-m:18px;
  --radius-l:24px;

  --transition:all .28s ease;
}

/* ========================= */
/* RESET */
/* ========================= */

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--kudi-text);
  background:var(--kudi-white);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

a{
  text-decoration:none;
  transition:var(--transition);
}

p{
  margin:0 0 16px;
  color:var(--kudi-text);
}

h1,h2,h3,h4,h5,h6{
  margin:0 0 14px;
  color:var(--kudi-blue-dark);
  font-weight:700;
  line-height:1.18;
  letter-spacing:-0.02em;
}

/* ========================= */
/* LAYOUT */
/* ========================= */

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.row{
  display:flex;
  flex-wrap:wrap;
  margin-left:-15px;
  margin-right:-15px;
}

.col-lg-12,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-md-6,.col-md-4,.col-6,.col-md-12{
  width:100%;
  padding-left:15px;
  padding-right:15px;
  box-sizing:border-box;
}

@media(min-width:768px){
  .col-md-4{width:33.3333%;}
  .col-md-6{width:50%;}
  .col-md-12{width:100%;}
  .col-6{width:50%;}
}

@media(min-width:992px){
  .col-lg-3{width:25%;}
  .col-lg-4{width:33.3333%;}
  .col-lg-5{width:41.6666%;}
  .col-lg-6{width:50%;}
  .col-lg-7{width:58.3333%;}
  .col-lg-12{width:100%;}
}

.mb-4{margin-bottom:1.5rem;}
.mt-4{margin-top:1.5rem;}
.text-center{text-align:center;}
.align-items-stretch{align-items:stretch;}
.align-items-center{align-items:center;}
.no-gutters{margin-left:0;margin-right:0;}
.no-gutters > [class*="col-"]{padding-left:0;padding-right:0;}

.section-padding{
  padding:100px 0;
}

/* ========================= */
/* NAVIGATION */
/* ========================= */

.navbar{
  background:rgba(28,24,51,0.78);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  padding:12px 0;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.kudi-nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  min-height:56px;
}

.navbar-brand{
  display:flex;
  align-items:center;
  color:#fff !important;
  text-decoration:none !important;
  position:relative;
  z-index:10001;
  min-width:0;
}

.brand-logo-wrap{
  width:52px;
  height:52px;
  border-radius:14px;
  background:rgba(255,255,255,0.96);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:14px;
  box-shadow:0 12px 26px rgba(139,92,246,0.18);
  overflow:hidden;
  flex:0 0 52px;
}

.brand-logo-img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-text{
  line-height:1.1;
  color:#fff;
  font-weight:800;
  font-size:1.08rem;
}

.brand-text small{
  display:block;
  font-size:.72rem;
  font-weight:600;
  color:rgba(255,255,255,0.70);
  letter-spacing:.02em;
  margin-top:3px;
}

.nav-toggle-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.kudi-nav{
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.kudi-nav a{
  color:#fff;
  font-weight:600;
  font-size:.96rem;
  padding:10px 12px;
  display:block;
  border-radius:10px;
}

.kudi-nav a:hover,
.kudi-nav a.active{
  color:#fff !important;
  background:rgba(255,255,255,0.08);
}

.kudi-nav-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
  border-radius:12px;
  cursor:pointer;
  position:relative;
  z-index:10002;
  align-items:center;
  justify-content:center;
  padding:0;
}

.kudi-nav-toggle:hover{
  background:rgba(255,255,255,0.10);
}

.kudi-nav-toggle-line{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  margin:4px auto;
  transition:var(--transition);
}

.nav-toggle-input:checked + .kudi-nav-toggle .kudi-nav-toggle-line:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.nav-toggle-input:checked + .kudi-nav-toggle .kudi-nav-toggle-line:nth-child(2){
  opacity:0;
}

.nav-toggle-input:checked + .kudi-nav-toggle .kudi-nav-toggle-line:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero-area-bg{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(28,24,51,0.90), rgba(139,92,246,0.34)),
    url('hero-meinelesung.jpg') center center / cover no-repeat;
}

.hero-area-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.10), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(221,208,255,0.18), transparent 26%),
    linear-gradient(to bottom, rgba(28,24,51,0.18), rgba(28,24,51,0.34));
  pointer-events:none;
}

.hero-area-bg::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:140px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.06));
  pointer-events:none;
}

.hero-area-bg .contents{
  position:relative;
  z-index:2;
  padding:178px 0 105px;
}

.hero-logo{
  width:96px;
  margin:0 auto 20px;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,0.12));
}

.hero-kicker{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.09);
  color:#fff;
  font-size:.9rem;
  margin-bottom:24px;
  letter-spacing:.04em;
  box-shadow:0 12px 28px rgba(0,0,0,0.10);
}

.hero-title{
  color:#fff;
  font-size:clamp(2.35rem, 5.6vw, 4.2rem);
  line-height:1.02;
  font-weight:800;
  margin-bottom:22px;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  letter-spacing:-0.04em;
  text-shadow:0 8px 24px rgba(0,0,0,0.16);
}

.hero-title span{
  color:#e4d8ff;
}

.hero-text{
  color:rgba(255,255,255,0.94);
  max-width:820px;
  margin:0 auto 38px;
  font-size:1.08rem;
  line-height:1.8;
}

.hero-text strong{
  color:#fff;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-bottom:8px;
}

.hero-buttons .btn-kudi,
.hero-buttons .btn-kudi-outline{
  margin:0;
}

.hero-info-row{
  margin-top:54px;
}

.hero-info-box{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  color:#fff;
  border-radius:18px;
  padding:22px 22px;
  margin-bottom:20px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  min-height:126px;
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
  transition:var(--transition);
}

.hero-info-box:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.13);
}

.hero-info-box strong{
  display:block;
  color:#e4d8ff;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.hero-info-box a{
  color:#fff;
  font-weight:700;
}

/* ========================= */
/* QUICK CONTACT */
/* ========================= */

.quick-contact{
  margin-top:-58px;
  position:relative;
  z-index:5;
}

.quick-contact-wrap{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:24px;
  box-shadow:var(--shadow-medium);
  overflow:hidden;
}

.quick-contact-item{
  padding:32px 30px;
  height:100%;
  border-right:1px solid var(--kudi-border);
  background:#fff;
}

.quick-contact-item:last-child{
  border-right:0;
}

.quick-contact-item i{
  font-size:1.45rem;
  color:var(--kudi-orange);
  margin-bottom:14px;
  display:block;
  font-style:normal;
}

.quick-contact-item h3{
  font-size:1.08rem;
  margin-bottom:8px;
}

.quick-contact-item p,
.quick-contact-item a{
  margin:0;
  color:var(--kudi-muted);
  font-weight:600;
}

.quick-contact-item a:hover{
  color:var(--kudi-orange-dark);
}

/* ========================= */
/* TITLES */
/* ========================= */

.section-title{
  font-size:clamp(1.75rem, 3.4vw, 2.4rem);
  text-align:center;
  margin-bottom:16px;
  color:var(--kudi-blue-dark);
  letter-spacing:-0.03em;
}

.section-title:after{
  content:"";
  display:block;
  width:92px;
  height:4px;
  border-radius:50px;
  background:linear-gradient(90deg, var(--kudi-orange), #c4b5fd);
  margin:16px auto 0;
}

.section-subtitle{
  text-align:center;
  max-width:760px;
  margin:0 auto 52px;
  color:var(--kudi-muted);
  font-size:1.04rem;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-kudi{
  background:linear-gradient(135deg, var(--kudi-orange), #a78bfa);
  color:#fff !important;
  border:0;
  padding:14px 30px;
  font-weight:700;
  border-radius:12px;
  box-shadow:0 16px 34px rgba(139,92,246,0.24);
  display:inline-block;
}

.btn-kudi:hover{
  background:linear-gradient(135deg, var(--kudi-orange-dark), var(--kudi-orange));
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:0 20px 40px rgba(139,92,246,0.28);
}

.btn-kudi-outline{
  background:rgba(255,255,255,0.06);
  color:#fff !important;
  border:1px solid rgba(255,255,255,0.26);
  padding:13px 28px;
  font-weight:700;
  border-radius:12px;
  display:inline-block;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

.btn-kudi-outline:hover{
  background:#fff;
  border-color:#fff;
  color:var(--kudi-blue-dark) !important;
}

/* ========================= */
/* ALERTS */
/* ========================= */

.form-alert{
  border-radius:16px;
  padding:16px 18px;
  margin:8px 0 22px;
  font-weight:600;
  border:1px solid transparent;
}

.form-alert-success{
  background:#eefbf3;
  border-color:#c6ead2;
  color:#21643c;
}

.form-alert-error{
  background:#fff1f3;
  border-color:#f1c7d0;
  color:#8b2e43;
}

/* ========================= */
/* HOME AUTHOR HINT */
/* ========================= */

.author-service-hint{
  max-width:900px;
  margin:0 auto 28px;
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:20px;
  padding:18px 20px;
  box-shadow:var(--shadow-soft);
  color:var(--kudi-text);
  text-align:center;
}

.author-service-hint strong{
  color:var(--kudi-blue-dark);
}

.author-service-hint-badge{
  display:inline-block;
  margin-right:10px;
  padding:6px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--kudi-orange), #a78bfa);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  vertical-align:middle;
}

/* ========================= */
/* CONTACT AUTHOR HINT */
/* ========================= */

.contact-author-hint{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #fcfbff 100%);
  border:1px solid var(--kudi-border);
  border-radius:18px;
  padding:16px 18px;
  margin:6px 0 22px;
  color:var(--kudi-text);
  box-shadow:var(--shadow-soft);
}

.contact-author-hint a{
  color:var(--kudi-orange-dark);
  font-weight:700;
}

.contact-author-hint a:hover{
  color:var(--kudi-orange);
}

.contact-author-hint strong{
  color:var(--kudi-blue-dark);
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-section{
  background:#fff;
}

.about-card{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #faf8ff 100%);
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:40px;
  height:100%;
  box-shadow:var(--shadow-soft);
}

.about-card p{
  color:var(--kudi-muted);
}

.about-list{
  padding-left:18px;
  margin-top:18px;
  color:var(--kudi-text);
}

.about-list li{
  margin-bottom:8px;
}

.highlight-grid{
  margin-top:12px;
}

.highlight-box{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:18px;
  padding:22px;
  text-align:center;
  height:100%;
  box-shadow:0 8px 18px rgba(36,31,58,0.04);
}

.highlight-box strong{
  display:block;
  font-size:1.55rem;
  color:var(--kudi-orange);
  line-height:1.1;
}

.highlight-box span{
  display:block;
  color:var(--kudi-muted);
  margin-top:8px;
  font-size:.95rem;
}

.about-image{
  width:100%;
  border:1px solid var(--kudi-border);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services-section{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #fcfbff 100%);
}

.service-link{
  display:block;
  color:inherit;
  height:100%;
}

.service-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:22px;
  padding:32px 26px;
  height:100%;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-medium);
  border-color:rgba(139,92,246,0.34);
}

.service-card:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--kudi-orange), #c4b5fd);
}

.service-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:rgba(139,92,246,0.10);
  color:var(--kudi-orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.65rem;
  margin-bottom:20px;
  font-style:normal;
}

.service-card h3{
  font-size:1.2rem;
  margin-bottom:12px;
}

.service-card p{
  color:var(--kudi-muted);
  margin-bottom:16px;
}

.service-more{
  color:var(--kudi-blue);
  font-weight:700;
  font-size:.95rem;
}

/* ========================= */
/* GENERIC CARD */
/* ========================= */

.card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:22px;
  padding:32px 26px;
  height:100%;
  box-shadow:var(--shadow-soft);
}

.card p{
  color:var(--kudi-muted);
}

.icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:rgba(139,92,246,0.10);
  color:var(--kudi-orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.65rem;
  margin-bottom:20px;
  font-style:normal;
}

.accent{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #fcfbff 100%);
}

/* ========================= */
/* PROCESS */
/* ========================= */

.process-section{
  background:#fff;
}

.process-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-left:4px solid var(--kudi-orange);
  border-radius:0 20px 20px 0;
  padding:32px 26px;
  height:100%;
  box-shadow:var(--shadow-soft);
}

.process-card p{
  color:var(--kudi-muted);
}

.process-step{
  display:block;
  color:var(--kudi-orange);
  font-weight:700;
  font-size:.84rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:10px;
}

/* ========================= */
/* CTA SECTION */
/* ========================= */

.cta-section{
  background:linear-gradient(135deg, #2a2444, #6d3de8);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 22%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.08), transparent 20%);
  pointer-events:none;
}

.cta-section .container{
  position:relative;
  z-index:2;
}

.cta-section .section-title,
.cta-section h3{
  color:#fff;
}

.cta-section .section-subtitle{
  color:rgba(255,255,255,0.84);
}

.cta-card{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:22px;
  padding:34px 28px;
  height:100%;
  backdrop-filter:blur(5px);
  box-shadow:0 16px 34px rgba(0,0,0,0.10);
}

.cta-card i{
  color:#ddd0ff;
  font-size:1.8rem;
  margin-bottom:14px;
  display:block;
  font-style:normal;
}

.cta-card p{
  color:rgba(255,255,255,0.88);
  margin-bottom:0;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact-section{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #fcfbff 100%);
}

.contact-card,
.contact-info-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:38px;
  height:100%;
  box-shadow:var(--shadow-soft);
}

.contact-card p,
.contact-info-card p{
  color:var(--kudi-muted);
}

.contact-info-item{
  padding:16px 0;
  border-bottom:1px solid var(--kudi-border);
}

.contact-info-item:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.contact-info-item strong{
  display:block;
  margin-bottom:6px;
  color:var(--kudi-blue-dark);
}

.contact-info-item a{
  color:var(--kudi-orange-dark);
  font-weight:700;
}

.contact-info-item a:hover{
  color:var(--kudi-orange);
}

.contact-form-kudi{
  margin-top:24px;
}

.form-group-kudi{
  margin-bottom:18px;
}

.form-group-kudi label{
  display:block;
  margin-bottom:8px;
  font-weight:700;
  color:var(--kudi-blue-dark);
  font-size:.95rem;
}

.form-control-kudi{
  width:100%;
  border:1px solid var(--kudi-border);
  background:#fff;
  border-radius:14px;
  padding:14px 15px;
  color:var(--kudi-text);
  transition:var(--transition);
  outline:none;
  box-sizing:border-box;
  font-family:inherit;
  font-size:1rem;
}

.form-control-kudi:focus{
  border-color:var(--kudi-orange);
  box-shadow:0 0 0 4px rgba(139,92,246,0.12);
}

.form-control-kudi-textarea{
  min-height:180px;
  resize:vertical;
}

.form-check-kudi label{
  font-weight:400;
  line-height:1.6;
  color:var(--kudi-text);
}

.form-check-kudi input{
  margin-right:6px;
  transform:translateY(1px);
}

.kudi-honeypot{
  position:absolute !important;
  left:-9999px !important;
  top:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* ========================= */
/* SUBHERO */
/* ========================= */

.subhero{
  position:relative;
  padding:170px 0 110px;
  color:#fff;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(28,24,51,0.92), rgba(139,92,246,0.58)),
    url('hero-meinelesung.jpg') center center / cover no-repeat;
  overflow:hidden;
}
.subhero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 28%),
    radial-gradient(circle at 80% 28%, rgba(255,255,255,0.08), transparent 24%);
  pointer-events:none;
}

.subhero .container{
  position:relative;
  z-index:2;
}

.subhero-kicker{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:.92rem;
  margin-bottom:20px;
}

.subhero h1{
  color:#fff;
  font-size:clamp(2.1rem, 5vw, 3.4rem);
  line-height:1.1;
  margin-bottom:18px;
  font-weight:800;
}

.subhero h1 span{
  color:#ddd0ff;
}

.subhero p{
  color:rgba(255,255,255,0.92);
  max-width:860px;
  margin:0 auto 30px;
  font-size:1.08rem;
}


/* ========================= */
/* BAND */
/* ========================= */

.band{
  background:linear-gradient(135deg, #2a2444, #6d3de8);
  border-radius:24px;
  padding:36px;
  color:#fff;
  box-shadow:var(--shadow-medium);
}

.band h2,
.band h3,
.band p{
  color:#fff;
}

.band-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* ========================= */
/* LEGAL */
/* ========================= */

.legal-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:38px;
  box-shadow:var(--shadow-soft);
}

.legal-card h2{
  margin-top:0;
  margin-bottom:18px;
}

.legal-card h2:not(:first-child){
  margin-top:34px;
}

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

.legal-box{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #fcfbff 100%);
  border:1px solid var(--kudi-border);
  border-radius:18px;
  padding:24px;
  color:var(--kudi-text);
}

.legal-box p:last-child,
.legal-box ul:last-child{
  margin-bottom:0;
}

.legal-box ul{
  padding-left:18px;
  margin-top:0;
}

.legal-box a{
  color:var(--kudi-orange-dark);
  font-weight:700;
}

/* ========================= */
/* AUTHOR PRICING */
/* ========================= */

.pricing-intro{
  margin-bottom:28px;
}

.author-steps{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin:26px 0 28px;
}

.author-step{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-soft);
}

.author-step h4{
  margin-bottom:6px;
  font-size:1.05rem;
}

.author-step p{
  margin:0;
  color:var(--kudi-muted);
}

.author-step-badge{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--kudi-orange), #a78bfa);
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 20px rgba(139,92,246,0.24);
}

.pricing-note{
  background:#fff7ef;
  border:1px solid #f0d7bc;
  border-left:5px solid #f0a45a;
  border-radius:18px;
  padding:20px 22px;
  color:#7b5732;
  box-shadow:var(--shadow-soft);
  margin-bottom:30px;
}

.pricing-note strong{
  color:#6d4320;
}

.pricing-headline{
  font-size:1.6rem;
  text-align:center;
  margin:10px 0 26px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  margin-bottom:28px;
}

.pricing-card{
  position:relative;
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:28px 24px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-medium);
}

.pricing-card-featured{
  border-color:rgba(139,92,246,0.36);
  box-shadow:var(--shadow-medium);
}

.pricing-badge{
  position:absolute;
  top:-12px;
  right:18px;
  background:linear-gradient(135deg, var(--kudi-orange), #a78bfa);
  color:#fff;
  padding:7px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  box-shadow:0 10px 20px rgba(139,92,246,0.24);
}

.pricing-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.pricing-card-head h4{
  margin:0;
  font-size:1.15rem;
}

.pricing-price{
  font-size:1.5rem;
  font-weight:800;
  color:var(--kudi-orange-dark);
  white-space:nowrap;
}

.pricing-list{
  margin:0;
  padding-left:18px;
  color:var(--kudi-text);
}

.pricing-list li{
  margin-bottom:8px;
}

.coaching-box{
  background:linear-gradient(180deg, var(--kudi-light) 0%, #fcfbff 100%);
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:28px 24px;
  box-shadow:var(--shadow-soft);
}

.coaching-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:10px;
}

.coaching-head h4{
  margin:0;
  font-size:1.12rem;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer-mini{
  background:var(--kudi-blue-dark);
  color:rgba(255,255,255,0.82);
  text-align:center;
  padding:26px 0;
  font-size:.95rem;
}

.footer-mini a{
  color:#fff;
  margin-right:16px;
}

.footer-mini a:hover{
  color:#ddd0ff;
}

.back-to-top{
  position:fixed;
  right:20px;
  bottom:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--kudi-orange), #a78bfa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  font-weight:700;
  box-shadow:0 16px 34px rgba(139,92,246,0.26);
  z-index:9998;
}

.back-to-top:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 40px rgba(139,92,246,0.32);
}

/* ========================= */
/* REVEAL ANIMATIONS */
/* ========================= */

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-hero{
  opacity:1;
  transform:none;
}

.js-ready .reveal{
  opacity:0;
  transition:opacity .8s ease, transform .8s ease;
  will-change:opacity, transform;
}

.js-ready .reveal-up{
  transform:translateY(34px);
}

.js-ready .reveal-left{
  transform:translateX(-34px);
}

.js-ready .reveal-right{
  transform:translateX(34px);
}

.js-ready .reveal-hero{
  transform:translateY(18px);
}

.js-ready .reveal.is-visible{
  opacity:1;
  transform:translate(0,0);
}

.delay-1{
  transition-delay:.08s;
}

.delay-2{
  transition-delay:.16s;
}

.delay-3{
  transition-delay:.24s;
}

@media (prefers-reduced-motion: reduce){
  .js-ready .reveal,
  .js-ready .reveal-up,
  .js-ready .reveal-left,
  .js-ready .reveal-right,
  .js-ready .reveal-hero{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width:991px){
  .section-padding{
    padding:78px 0;
  }

  .quick-contact{
    margin-top:30px;
  }

  .quick-contact-item{
    border-right:0;
    border-bottom:1px solid var(--kudi-border);
  }

  .quick-contact-item:last-child{
    border-bottom:0;
  }

  .kudi-nav-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .kudi-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:12px;
    background:rgba(28,24,51,0.98);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    box-shadow:0 18px 36px rgba(0,0,0,0.18);
    padding:14px 16px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  .nav-toggle-input:checked + .kudi-nav-toggle + .kudi-nav{
    display:flex;
  }

  .kudi-nav a{
    width:100%;
    padding:14px 12px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    margin-bottom:4px;
  }

  .kudi-nav a:last-child{
    border-bottom:0;
    margin-bottom:0;
  }

  .hero-area-bg .contents{
    padding:155px 0 88px;
  }

  .hero-info-row{
    margin-top:40px;
  }

  .band-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .author-steps{
    grid-template-columns:1fr;
  }

  .pricing-grid{
    grid-template-columns:1fr;
  }

  .back-to-top{
    right:16px;
    bottom:16px;
    width:44px;
    height:44px;
  }
}

@media (max-width:575px){
  .section-title{
    font-size:1.7rem;
  }

  .hero-title{
    font-size:2.1rem;
    line-height:1.06;
  }

  .hero-text,
  .subhero p{
    font-size:1rem;
  }

  .hero-kicker{
    font-size:.82rem;
    padding:8px 14px;
  }

  .hero-info-box{
    min-height:auto;
    padding:20px 18px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-buttons .btn-kudi,
  .hero-buttons .btn-kudi-outline{
    width:100%;
    text-align:center;
  }

  .about-card,
  .contact-card,
  .contact-info-card,
  .cta-card,
  .card,
  .band,
  .legal-card,
  .coaching-box,
  .pricing-card{
    padding:26px 22px;
  }

  .legal-box,
  .pricing-note,
  .author-step,
  .author-service-hint,
  .contact-author-hint{
    padding:20px;
  }

  .pricing-card-head,
  .coaching-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .brand-text{
    font-size:1rem;
  }

  .brand-text small{
    font-size:.66rem;
  }

  .brand-logo-wrap{
    width:48px;
    height:48px;
    flex:0 0 48px;
  }

  .hero-logo{
    width:82px;
    margin-bottom:18px;
  }

  .author-service-hint-badge{
    display:block;
    width:max-content;
    margin:0 auto 10px;
  }
}





.project-box-link{
  display:block;
  height:100%;
  color:inherit;
  text-decoration:none !important;
}

.project-box{
  transition:var(--transition);
}

.project-box:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-strong);
  border-color:rgba(255,255,255,0.28);
}

.project-box-more{
  display:inline-block;
  margin-top:16px;
  color:#ffffff;
  font-weight:700;
  font-size:.95rem;
  opacity:.95;
}

.project-box-link:hover .project-box-more{
  opacity:1;
  text-decoration:underline;
}







/* portal */
.portal-project-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.portal-doc-box{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.portal-doc-head{
  margin-bottom:14px;
}

.portal-doc-content{
  background:#fafafa;
  border-radius:12px;
  padding:16px;
  margin-bottom:18px;
}

.portal-doc-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.portal-ok{
  color:green;
  font-weight:700;
}



/* ========================= */
/* LESEPARTY TERMINE */
/* ========================= */

.leseparty-featured{
  margin:24px auto 34px;
  max-width:980px;
}

.leseparty-featured-inner{
  background:linear-gradient(135deg, var(--kudi-blue-dark), var(--kudi-blue));
  color:#fff;
  border-radius:30px;
  padding:42px 34px;
  text-align:center;
  box-shadow:0 28px 60px rgba(28,24,51,0.22);
  position:relative;
  overflow:hidden;
}

.leseparty-featured-inner:before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
}

.leseparty-featured-inner:after{
  content:"";
  position:absolute;
  bottom:-90px;
  left:-90px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}

.leseparty-featured-inner > *{
  position:relative;
  z-index:2;
}

.leseparty-featured-badge{
  display:inline-block;
  background:var(--kudi-orange);
  color:#fff;
  padding:7px 15px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:14px;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.leseparty-featured-countdown{
  display:inline-block;
  margin-bottom:14px;
  color:#ddd0ff;
  font-weight:700;
  font-size:.96rem;
  letter-spacing:.02em;
}

.leseparty-featured-inner h3{
  color:#fff;
  font-size:clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom:12px;
}

.leseparty-featured-date{
  font-size:1.1rem;
  margin-bottom:6px;
  color:#fff;
}

.leseparty-featured-time{
  font-size:1rem;
  margin-bottom:8px;
  color:rgba(255,255,255,0.92);
}

.leseparty-featured-location{
  color:rgba(255,255,255,0.84);
  margin-bottom:16px;
}

.leseparty-featured-status-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.leseparty-featured-actions{
  margin-top:10px;
}

.leseparty-termin-disabled{
  display:inline-block;
  color:rgba(255,255,255,0.88);
  font-weight:700;
}

.leseparty-termin-hinweis-featured{
  display:inline-block;
  color:rgba(255,255,255,0.88);
  font-weight:700;
}

.leseparty-more-head{
  text-align:left;
  max-width:1200px;
  margin:10px auto 18px;
}

.leseparty-more-head h3{
  margin:0;
  color:var(--kudi-blue-dark);
}

.leseparty-termin-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:26px 24px;
  height:100%;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.leseparty-termin-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-medium);
}

.leseparty-termin-card.is-dimmed{
  opacity:.82;
}

.leseparty-termin-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}

.leseparty-termin-datum{
  display:inline-block;
  font-weight:700;
  color:var(--kudi-blue-dark);
  font-size:1rem;
}

.leseparty-termin-status{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
}

.leseparty-termin-status.is-open{
  background:rgba(139,92,246,0.10);
  color:var(--kudi-orange-dark);
}

.leseparty-termin-status.is-full{
  background:rgba(180,40,40,0.10);
  color:#a12d2d;
}

.leseparty-termin-info{
  margin-top:10px;
}

.leseparty-termin-info p{
  margin:0 0 8px;
  color:var(--kudi-muted);
}

.leseparty-termin-hinweis{
  display:inline-block;
  margin-top:12px;
  color:var(--kudi-muted);
  font-weight:600;
}

.leseparty-plaetze-hinweis{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  color:#fff;
  font-size:.82rem;
  font-weight:700;
}

.leseparty-plaetze-hinweis-small{
  display:inline-block;
  margin-top:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(139,92,246,0.08);
  color:var(--kudi-orange-dark);
  font-size:.82rem;
  font-weight:700;
}

@media (max-width:991px){
  .leseparty-featured-inner{
    padding:34px 26px;
  }
}

@media (max-width:575px){
  .leseparty-featured-inner{
    padding:30px 20px;
    border-radius:24px;
  }

  .leseparty-featured-date,
  .leseparty-featured-time,
  .leseparty-featured-location{
    font-size:.98rem;
  }

  .leseparty-termin-top{
    align-items:flex-start;
  }
}











/* ========================= */
/* LESEBÜHNE EVENTS */
/* ========================= */

.lesebuehne-featured{
  margin:24px auto 34px;
  max-width:980px;
}

.lesebuehne-featured-link{
  display:block;
  color:inherit;
  text-decoration:none !important;
}

.lesebuehne-featured-inner{
  background:linear-gradient(135deg, var(--kudi-blue-dark), var(--kudi-blue));
  color:#fff;
  border-radius:30px;
  padding:42px 34px;
  text-align:center;
  box-shadow:0 28px 60px rgba(28,24,51,0.22);
  transition:var(--transition);
}

.lesebuehne-featured-link:hover .lesebuehne-featured-inner{
  transform:translateY(-4px);
  box-shadow:0 34px 70px rgba(28,24,51,0.26);
}

.lesebuehne-featured-badge{
  display:inline-block;
  background:var(--kudi-orange);
  color:#fff;
  padding:7px 15px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:14px;
}

.lesebuehne-featured-inner h3{
  color:#fff;
  font-size:clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom:10px;
}

.lesebuehne-featured-author{
  color:#ddd0ff;
  font-weight:700;
  margin-bottom:8px;
}

.lesebuehne-featured-date{
  color:#fff;
  margin-bottom:6px;
}

.lesebuehne-featured-time{
  color:rgba(255,255,255,0.88);
  margin-bottom:16px;
}

.lesebuehne-featured-status-wrap{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.lesebuehne-featured-more{
  display:inline-block;
  margin-top:8px;
  color:#fff;
  font-weight:700;
}

.lesebuehne-event-card-link{
  display:block;
  height:100%;
  color:inherit;
  text-decoration:none !important;
}

.lesebuehne-event-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:24px;
  padding:26px 24px;
  height:100%;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.lesebuehne-event-card-link:hover .lesebuehne-event-card{
  transform:translateY(-6px);
  box-shadow:var(--shadow-medium);
}

.lesebuehne-event-card.is-dimmed{
  opacity:.82;
}

.lesebuehne-event-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}

.lesebuehne-event-date{
  display:inline-block;
  font-weight:700;
  color:var(--kudi-blue-dark);
}

.lesebuehne-event-author{
  color:var(--kudi-muted);
  font-weight:600;
  margin-bottom:10px;
}

.lesebuehne-event-more{
  display:inline-block;
  margin-top:12px;
  color:var(--kudi-orange-dark);
  font-weight:700;
}

@media (max-width:575px){
  .lesebuehne-featured-inner{
    padding:30px 20px;
    border-radius:24px;
  }
}






.portal-btn-dark{
  background:transparent;
  color:var(--kudi-blue-dark) !important;
  border:1px solid rgba(28,24,51,0.14);
}

.portal-btn-dark:hover{
  background:#fff;
  color:var(--kudi-blue-dark) !important;
  border-color:rgba(28,24,51,0.24);
}

.form-alert{
  border-radius:16px;
  padding:16px 18px;
  margin:8px 0 22px;
  font-weight:600;
  border:1px solid transparent;
}

.form-alert-success{
  background:#eefbf3;
  border-color:#c6ead2;
  color:#21643c;
}

.form-alert-error{
  background:#fff1f3;
  border-color:#f1c7d0;
  color:#8b2e43;
}














/* =========================================
   ADMIN BASIS
========================================= */

.admin-table-wrap{
  width:100%;
  overflow-x:auto;
}

.admin-table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
}

.admin-table th,
.admin-table td{
  padding:12px;
  border-bottom:1px solid #eee;
  text-align:left;
  vertical-align:top;
}

/* =========================================
   STATUS BADGES
========================================= */

.status-badge{
  padding:4px 10px;
  border-radius:10px;
  font-size:12px;
  font-weight:bold;
  display:inline-block;
}

.status-neu{background:#fff3cd;color:#856404;}
.status-bestaetigt{background:#d4edda;color:#155724;}
.status-storniert{background:#f8d7da;color:#721c24;}

/* =========================================
   BUTTONS
========================================= */

.btn-small{
  padding:6px 10px;
  background:#28a745;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  display:inline-block;
  margin:2px;
}

.btn-small:hover{
  color:#fff;
  opacity:.9;
}

.btn-danger{ background:#dc3545; }
.btn-info{ background:#17a2b8; }

.btn-delete{
  background:#ff1c1c;
}

.btn-delete:hover{
  background:#d51d04;
  color:#fff;
}

/* =========================================
   PROGRESS
========================================= */

.progress-bar-wrap{
  background:#eee;
  height:8px;
  border-radius:10px;
  overflow:hidden;
  margin-top:8px;
}

.progress-bar{
  background:#f28c28;
  height:100%;
}

/* =========================================
   ADMIN NAVIGATION
========================================= */

.admin-subnav-wrap{
  background:var(--kudi-blue-dark);
  padding:12px 0;
  margin-top:80px;
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.admin-subnav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.admin-subnav a{
  color:#fff;
  text-decoration:none !important;
  font-weight:700;
  padding:8px 14px;
  border-radius:10px;
  background:rgba(255,255,255,0.08);
}

.admin-subnav a:hover{
  background:rgba(255,255,255,0.16);
}

/* =========================================
   ADMIN HEADER / FILTER
========================================= */

.admin-list-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.admin-filter-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* =========================================
   DASHBOARD
========================================= */

.dashboard-event-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.dashboard-event-meta h2{
  margin:0 0 6px;
  color:var(--kudi-blue-dark);
}

.dashboard-event-meta p{
  margin:0;
  color:var(--kudi-muted);
}

.dashboard-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

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

.dashboard-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-soft);
}

.dashboard-card span{
  display:block;
  color:var(--kudi-muted);
  margin-bottom:8px;
  font-weight:600;
}

.dashboard-card strong{
  display:block;
  color:var(--kudi-blue-dark);
  font-size:2rem;
}

.dashboard-card-ok{
  border-color:#cce7d3;
  background:#f4fbf6;
}

.dashboard-card-warn{
  border-color:#f1e0b8;
  background:#fffaf0;
}

/* =========================================
   TICKET
========================================= */

.ticket-card{
  background:#fff;
  border:1px solid var(--kudi-border);
  border-radius:20px;
  padding:30px;
  box-shadow:var(--shadow-medium);
}

.ticket-card-head{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.ticket-qr-image{
  max-width:220px;
  width:100%;
  margin-top:10px;
  border-radius:12px;
  border:1px solid var(--kudi-border);
  background:#fff;
  padding:10px;
}

/* =========================================
   MOBILE OPTIMIERUNG
========================================= */

@media (max-width: 991px){

  .dashboard-cards{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .admin-list-head{
    flex-direction:column;
    align-items:stretch;
  }

  .dashboard-actions,
  .admin-filter-form{
    width:100%;
  }

  .dashboard-actions .btn-kudi,
  .admin-filter-form .btn-kudi{
    flex:1 1 48%;
  }

  .admin-table{
    min-width:720px;
  }

  .admin-table th,
  .admin-table td{
    font-size:13px;
    padding:10px 8px;
  }
}

@media (max-width: 767px){

  .admin-subnav{
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:8px;
  }

  .admin-subnav a{
    flex:0 0 auto;
    font-size:13px;
    padding:7px 12px;
  }

  .dashboard-cards{
    grid-template-columns:1fr;
  }

  .dashboard-card{
    padding:16px;
  }

  .admin-table{
    min-width:650px;
  }

  .btn-small{
    font-size:11px;
    padding:5px 7px;
  }
}

@media (max-width: 575px){

  .dashboard-card strong{
    font-size:1.4rem;
  }

  .admin-table{
    min-width:600px;
  }

  .form-control-kudi{
    font-size:16px; /* iOS Zoom Fix */
  }
}

/* =========================================
   PRINT
========================================= */

@media print {

  .navbar,
  .admin-subnav-wrap,
  footer,
  .btn-kudi,
  .dashboard-actions{
    display:none !important;
  }

  body{
    background:#fff !important;
    color:#000 !important;
  }

  .ticket-card{
    box-shadow:none !important;
    border:1px solid #ccc !important;
  }

  .ticket-qr-image{
    border:1px solid #ccc !important;
  }
}
/* =========================================
   ADMIN APP FEELING
========================================= */

:root{
  --admin-app-bg:#f4f7fb;
  --admin-surface:#ffffff;
  --admin-border:#e7edf5;
  --admin-shadow:0 10px 28px rgba(16, 24, 40, 0.08);
  --admin-shadow-soft:0 6px 18px rgba(16, 24, 40, 0.05);
  --admin-radius:18px;
}

/* Gesamter Adminbereich wirkt kompakter und ruhiger */
body{
  background:var(--admin-app-bg);
}

/* Header leicht app-artig */
.site-header,
.navbar{
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
}

/* Admin-Navigation sticky */
.admin-subnav-wrap{
  position:sticky;
  top:64px;
  z-index:90;
  background:rgba(13,39,66,0.92);
  backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  box-shadow:0 6px 20px rgba(0,0,0,0.10);
}

/* Wenn dein Header höher ist, diesen Wert anpassen */
@media (min-width:768px){
  .admin-subnav-wrap{
    top:78px;
  }
}

/* Container etwas angenehmer */
.section-padding{
  padding:42px 0;
}

/* Karten/App-Flächen */
.about-card,
.dashboard-card,
.ticket-card,
.card,
.cta-card,
.process-card{
  background:var(--admin-surface);
  border:1px solid var(--admin-border);
  border-radius:var(--admin-radius);
  box-shadow:var(--admin-shadow-soft);
}

/* Karten etwas „appiger“ */
.about-card{
  padding:22px;
}

.dashboard-card{
  padding:20px;
  transition:transform .18s ease, box-shadow .18s ease;
}

.dashboard-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--admin-shadow);
}

/* Tabellen wie eingebettete Panels */
.admin-table-wrap{
  background:#fff;
  border:1px solid var(--admin-border);
  border-radius:16px;
  box-shadow:var(--admin-shadow-soft);
  overflow:auto;
}

.admin-table{
  margin-top:0;
  background:transparent;
}

.admin-table thead th{
  position:sticky;
  top:0;
  z-index:1;
  background:#fbfcfe;
  box-shadow:inset 0 -1px 0 #edf2f7;
}

.admin-table th{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#6b7788;
}

.admin-table td{
  background:#fff;
}

.admin-table tr:hover td{
  background:#fff9f2;
}

/* Kompakte Filter-/Head-Bereiche */
.admin-list-head{
  margin-bottom:16px;
}

.admin-filter-form .form-control-kudi,
.admin-filter-form select{
  min-height:44px;
  border-radius:12px;
}

/* Buttons app-artiger */
.btn-kudi,
.btn-kudi-outline,
.btn-small{
  border-radius:12px;
  font-weight:700;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.btn-kudi{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-kudi-outline{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-small{
  min-height:36px;
  min-width:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Statuschips etwas moderner */
.status-badge{
  border-radius:999px;
  font-weight:700;
  padding:5px 10px;
}

/* Dashboard cards */
.dashboard-cards{
  gap:14px;
}

.dashboard-card span{
  font-size:13px;
}

.dashboard-card strong{
  font-size:1.9rem;
  line-height:1.1;
}

/* App-ähnliche Quick-Actions */
.dashboard-actions{
  gap:8px;
}

.dashboard-actions .btn-kudi,
.dashboard-actions .btn-kudi-outline{
  min-width:160px;
}

/* Formulare */
.form-control-kudi,
textarea.form-control-kudi,
select.form-control-kudi{
  border:1px solid #dbe4ee;
  border-radius:14px;
  background:#fff;
  box-shadow:inset 0 1px 2px rgba(16,24,40,0.03);
}

.form-control-kudi:focus,
textarea.form-control-kudi:focus,
select.form-control-kudi:focus{
  outline:none;
  border-color:#f28c28;
  box-shadow:0 0 0 4px rgba(242,140,40,0.12);
}

/* App-artige Alerts */
.form-alert{
  border-radius:14px;
  border:1px solid transparent;
  box-shadow:var(--admin-shadow-soft);
}

.form-alert-success{
  border-color:#cfe9d7;
}

.form-alert-error{
  border-color:#f3d1d5;
}

/* Floating Action Button */
.admin-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:120;
  width:58px;
  height:58px;
  border-radius:999px;
  background:linear-gradient(180deg, #f59b3d, #f28c28);
  color:#fff !important;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none !important;
  font-size:26px;
  font-weight:700;
  box-shadow:0 14px 34px rgba(242,140,40,0.35);
}

.admin-fab:hover{
  color:#fff;
  transform:translateY(-2px);
}

/* Mobile: mehr echtes App-Feeling */
@media (max-width: 767px){
  body{
    background:#eef3f9;
  }

  .section-padding{
    padding:28px 0 90px;
  }

  .container{
    padding-left:12px;
    padding-right:12px;
  }

  .admin-subnav-wrap{
    top:56px;
    margin-top:0;
    padding:10px 0;
  }

  .admin-subnav{
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:8px;
    padding:0 2px 4px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .admin-subnav::-webkit-scrollbar{
    display:none;
  }

  .admin-subnav a{
    flex:0 0 auto;
    white-space:nowrap;
    padding:9px 12px;
    font-size:13px;
    border-radius:12px;
  }

  .section-title{
    font-size:1.28rem;
    margin-bottom:8px;
  }

  .section-subtitle{
    font-size:.92rem;
  }

  .about-card,
  .dashboard-card,
  .ticket-card{
    padding:16px;
    border-radius:16px;
  }

  .dashboard-cards{
    grid-template-columns:1fr;
    gap:10px;
  }

  .dashboard-card strong{
    font-size:1.5rem;
  }

  .admin-list-head{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .dashboard-actions,
  .admin-filter-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    width:100%;
  }

  .dashboard-actions .btn-kudi,
  .dashboard-actions .btn-kudi-outline,
  .admin-filter-form .btn-kudi,
  .admin-filter-form .btn-kudi-outline{
    min-width:0;
    width:100%;
  }

  .admin-filter-form .form-control-kudi,
  .admin-filter-form select{
    grid-column:1 / -1;
    width:100%;
  }

  .admin-table{
    min-width:640px;
  }

  .admin-table th,
  .admin-table td{
    padding:10px 8px;
    font-size:12px;
  }

  .btn-small{
    min-width:34px;
    min-height:34px;
    font-size:11px;
    padding:5px 7px;
  }

  .admin-fab{
    right:14px;
    bottom:14px;
    width:56px;
    height:56px;
  }
}

















/* ###################### */
/*      Cookie banner.    */
/* ###################### */

.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:99999;
}

.cookie-banner__panel{
  max-width:980px;
  margin:0 auto;
  background:#fff;
  color:#243447;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,0.18);
  padding:18px;
}

.cookie-banner__content h3{
  margin:0 0 10px;
  font-size:1.1rem;
}

.cookie-banner__content p{
  margin:0;
  line-height:1.5;
}

.cookie-banner__details{
  margin-top:16px;
  border-top:1px solid #e8edf3;
  padding-top:14px;
}

.cookie-banner__group + .cookie-banner__group{
  margin-top:12px;
}

.cookie-banner__group-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:4px;
}

.cookie-switch{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.cookie-switch input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.cookie-switch span{
  width:48px;
  height:28px;
  background:#cfd8e3;
  border-radius:999px;
  position:relative;
  display:inline-block;
  transition:all .2s ease;
}

.cookie-switch span::after{
  content:'';
  position:absolute;
  top:3px;
  left:3px;
  width:22px;
  height:22px;
  background:#fff;
  border-radius:50%;
  transition:all .2s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.18);
}

.cookie-switch input:checked + span{
  background:#f28c28;
}

.cookie-switch input:checked + span::after{
  left:23px;
}

.cookie-banner__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.cookie-settings-fab{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:99998;
  padding:10px 14px;
  border:none;
  border-radius:999px;
  background:#0d2742;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
  cursor:pointer;
}

@media (max-width:767px){
  .cookie-banner{
    left:10px;
    right:10px;
    bottom:10px;
  }

  .cookie-banner__panel{
    padding:14px;
    border-radius:14px;
  }

  .cookie-banner__actions{
    flex-direction:column;
  }

  .cookie-banner__actions .btn-kudi,
  .cookie-banner__actions .btn-kudi-outline{
    width:100%;
  }
}