:root {
  --bg: #0b0b0b;
  /* Schwarz (Dark) */
  --bg-soft: #121212;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --gold: #d4af37;
  /* Gold CI */
  --gold-soft: #b8942d;
  --card: #151515;
  --stroke: rgba(255, 255, 255, .08);
  --ok: #18c37d;
  --warn: #ffb703;
  --danger: #f94144;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  padding: .9rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
  transition: .2s transform ease;
}

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

.btn.outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}

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

/* Floating Preview Button (opens live preview window) */
.preview-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  border: 0;
  border-radius: 999px;
  padding: .9rem 1.1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer
}

.preview-fab:hover {
  transform: translateY(-2px)
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #000;
  border-bottom: 1px solid var(--stroke);
  background-image: url(/img/Header.png);
  background-size: cover;
  background-position: center top;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0
}


/* Language Selector */
.bc-header__lang {
  position: relative;
}

.bc-header__lang-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 12px 0;
  /* border-radius: 6px; */
  transition: background-color 0.3s ease;
}

.bc-partner .bc-header__lang-button,
.bc-professional .bc-header__lang-button {
  padding: 15px 26px;
  border-radius: 10px;
  border: 1px solid #e6e8ec;
}

.bc-header__lang-button:hover {
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.bc-header__lang-button.active {
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.bc-header__lang-globe {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-header__lang-name {
  font: 600 16px/1 var(--global-font);
  color: var(--light-color);
}

.bc-header__lang-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bc-header__lang-button.active .bc-header__lang-arrow {
  transform: rotate(180deg);
}

.bc-header__lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #424242;
  border-radius: 8px;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bc-header__lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bc-header__lang-option {
  display: block;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font: 400 14px/1.2 var(--global-font);
  transition: background-color 0.3s ease;
}

.bc-header__lang-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-header__lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.bc-header__lang-option:last-child {
  border-radius: 0 0 8px 8px;
}


.logo {
  display: flex;
  gap: .7rem;
  align-items: center;
  font-weight: 800;
  letter-spacing: .5px
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 38px;
  align-items: center;
  padding: 150px 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .78rem;
  text-shadow: 0 0 10px #000;
}

h1 {
  font-family: Oswald, Inter, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: .4rem 0 1rem;
  text-shadow: 0 0 10px #000;
}

.claim {
  font-family: Oswald, Inter, sans-serif;
  color: var(--gold);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: .4rem 0 1.2rem;
  text-shadow: 0 0 10px #000;
}

.sub {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 52ch;
  text-shadow: 0 0 10px #000;
}

.hero-phones {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.mock {
  width: 48%;
  height: 86%;
  border-radius: 22px;
  border: 1px solid #222;
  background: linear-gradient(180deg, #101010, #050505);
  transform: rotate(8deg) translateX(14%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .55);
}

.mock.secondary {
  transform: rotate(-10deg) translateX(-14%);
  opacity: .9
}

.cta-row {
  display: flex;
  gap: .8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap
}

.note {
  font-size: .9rem;
  color: var(--text);
  text-shadow: 0 0 10px #000;
}

/* SECTION */
section {
  padding: 72px 0;
  border-bottom: 1px solid var(--stroke)
}

h2 {
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 18px
}

.kicker {
  color: var(--muted);
  margin: .2rem 0 5rem;
  max-width: 68ch;
      text-shadow: 0 0 10px #000;
}

.features-items{
  padding: 20px 0;
  margin-bottom: 45px;
  position: relative;
  color: #000;
}
.features-items:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 85px;
    left: 0;
    right: 0;
    background-color: var(--gold);
    /*opacity: 0.6;*/
}
@media(max-width: 1500px){
  .features-items:before{
    bottom: 0;
  }
}
.features-items .item{
  position: relative;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}
@media(max-width: 980px){
  .features-items .item{
    flex-direction: column;
    align-items: center;
  }
}
.features-items .item__img{
  width: 55%;
}
@media(max-width: 980px){
  .features-items .item__img{
      width: 250px;
  }
}
.features-items .item__img img{
    width: 100%;
    display: block;
}
.features-items .item__details{
  width: 45%;
  text-align: center;
  padding: 20px;
}
@media(max-width: 980px){
  .features-items .item__details{
      width: 100%;
  }
}
.features-items .item__title{
  font-size: 40px;
  text-transform: uppercase;
  /*margin-top: 70px;*/
  line-height: 1.3;
  margin-bottom: 0;
}
@media(max-width: 1500px){
  .features-items .item__title{
    font-size: 30px;
    /*margin-top: 20px;*/
  }
}
@media(max-width: 980px){
  .features-items .item__title{
      font-size: 20px;
  }
}
.features-items .item__desc{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
}
@media(max-width: 1700px){
  .features-items .item__desc{
      font-size: 20px;
  }
}
@media(max-width: 1500px){
  .features-items .item__desc{
      font-size: 16px;
  }
}
.features-items .slick-slider{
    /*padding-bottom: 81px;*/
}
.features-items .slick-list{
  padding: 0px 28% 0px 33% !important;
}
@media(max-width: max-width: 1300px){
  .features-items .slick-list{
    padding: 0px 18% 0px 23% !important;
  }
}
@media(max-width: 991px){
  .features-items .slick-list{
    padding: 0px 5% !important;
  }
}

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

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card .thumb {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.card .thumb img{
  display: block;
  width: 100%;
}

.card h3 {
  margin: .2rem 0 .6rem;
  font-size: 1.05rem;
  color: var(--gold)
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: .6rem 0 0
}

.badge {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .82rem;
  color: var(--muted)
}

.price {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px
}

.price .pill {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: .45rem .7rem;
  font-weight: 700
}

/* GRID 2 */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.list {
  display: grid;
  gap: 10px
}

.list li {
  list-style: none;
  padding-left: 28px;
  position: relative
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 0 2px rgba(212, 175, 55, .15);
}

/*kontakt section*/
#kontakt{
  background-image: url(/img/kontakt.png);
  background-size: cover;
  background-position: center right;
}

/* FOOTER */
footer {
  padding: 38px 0;
  color: var(--muted)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px
}

.small {
  font-size: .85rem
}

/* FORMS */
form {
  display: grid;
  gap: 10px;
  margin-top: 12px
}

input,
textarea {
  background: #0f0f0f;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--text);
}

textarea {
  min-height: 110px
}

.cap {
  font-size: .78rem;
  color: var(--muted)
}

/* RESPONSIVE */
@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

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

  .split {
    grid-template-columns: 1fr
  }

  .hero-phones {
    display: none
  }
}