/* Local fonts (Kross Neue Grotesk) */
@font-face {
  font-family: 'Kross Neue Grotesk';
  src: url('/assets/fonts/KrossNeueGrotesk-Regular.woff2') format('woff2'),
       url('/assets/fonts/KrossNeueGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kross Neue Grotesk';
  src: url('/assets/fonts/KrossNeueGrotesk-Light.woff2') format('woff2'),
       url('/assets/fonts/KrossNeueGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kross Neue Grotesk';
  src: url('/assets/fonts/KrossNeueGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kross Neue Grotesk';
  src: url('/assets/fonts/KrossNeueGrotesk-Italic.woff2') format('woff2'),
       url('/assets/fonts/KrossNeueGrotesk-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:        #0d0d0d;
  --surface:   #141414;
  --surface2:  #1a1a1a;
  --border:    rgba(255,255,255,0.08);
  --nude:      #BDA7AA;
  --nude-dk:   #9a8083;
  --nude-lt:   #d4c0c3;
  --white:     #ffffff;
  --muted:     #ffffff;
  --serif:     'freight-big-pro', Georgia, serif;
  --sans:      'Kross Neue Grotesk', sans-serif;
}

/* ── BASE ───────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
}

/* ── NAV ────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.site-nav .logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.site-nav .logo span { color: var(--nude); }
.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--nude);
  color: var(--bg) !important;
  padding: .4rem 1.2rem;
  border-radius: 1px;
  font-weight: 500;
}
.btn-nav:hover { background: var(--nude-lt) !important; }
.hamburger {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  padding: .35rem .65rem;
  border-radius: 2px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

/* ── MOBILE NAV COLLAPSE ────────────────────── */
#mobileMenu {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(13,13,13,.97);
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: relative;
  height: 370px;
}
@media (min-width: 992px) {
  .hero-img-wrap { height: 100%; min-height: 600px; }
}
.hero-img-wrap img,
.hero-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 15%;
  display: block;
}
.hero-img-wrap video {
        transform: scaleX(-1);
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
}
@media (min-width: 992px) {
  .hero-img-wrap::after {
    background: linear-gradient(to right, #0d0d0d 0%, transparent 20%),
                linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  }
  .divider-section{
  	    background-image: url(/assets/img/adshub-divider.jpg);
  	    min-height: 650px!important;
  }
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(160deg, #2a1f20 0%, #150d0e 60%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder span {
  color: rgba(255,255,255,.1);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-text {
  padding: 2.5rem 1.5rem 3rem;
}
@media (min-width: 992px) {
  .hero-text {
    padding: 5rem 3rem 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--nude); }
.hero-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn-primary-custom {
  display: inline-block;
  background: var(--nude);
  color: var(--bg);
  padding: .85rem 2.2rem;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary-custom:hover { background: var(--nude-lt); transform: translateY(-1px); color: var(--bg); }
.btn-ghost-custom {
  display: inline-block;
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost-custom:hover { color: var(--white); border-color: var(--muted); }

/* ── SECTION BASE ───────────────────────────── */
.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--nude); }
.section-sub {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.accent-line {
  width: 36px;
  height: 2px;
  background: var(--nude);
  margin-bottom: 1.6rem;
  opacity: .7;
}
.divider-section{
	    background-image: url(/assets/img/adshub-divider.jpg);
	    min-height: 280px;
		background-size: cover;
}

/* ── PAIN LIST ──────────────────────────────── */
.pain-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--muted);
}
.pain-item:last-child { border-bottom: none; }
.pain-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
}
.pain-icon.x  { color: #c07070; border-color: #c0707040; }
.pain-icon.check { color: var(--nude); border-color: var(--nude-dk); }

/* ── SURFACE CARD ───────────────────────────── */
.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  position: relative;
}
.surface-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 1.5rem; right: 1.5rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--nude), transparent);
}

/* ── STATS ──────────────────────────────────── */
.stat-wrap { border-top: 1px solid var(--border); margin-top: 1.5rem; padding-top: 1.5rem; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--nude);
  display: block;
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-desc { font-size: .76rem; color: var(--muted); letter-spacing: .04em; }

/* ── PROCESS ────────────────────────────────── */
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: border-color .3s, transform .3s;
}
.process-step:hover { border-color: var(--nude); transform: translateY(-3px); }
.step-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--nude);
  margin-bottom: 1rem;
  transition: color .3s;
}
.process-step:hover .step-num { color: var(--nude); }
.step-title { font-size: .92rem; font-weight: 500; margin-bottom: .5rem; color: var(--white); }
.step-desc { font-size: .84rem; color: var(--muted); }

/* ── PRICING ────────────────────────────────── */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.price-card:hover { border-color: var(--nude); transform: translateY(-3px); }
.price-card.featured { border-color: var(--nude); background: #1a1415; }
.price-card.featured::after {
  content: 'Empfohlen';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--nude);
  color: var(--bg);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .8rem;
  border-radius: 0 0 4px 4px;
}
.price-name {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: .3rem;
}
.price-amount sub { font-size: .9rem; color: var(--muted); font-family: var(--sans); vertical-align: baseline; }
.price-period { font-size: .78rem; color: var(--muted); margin-bottom: 1.4rem; }
.price-features { list-style: none; padding: 0; flex: 1; margin-bottom: 1.8rem; }
.price-features li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--nude); flex-shrink: 0; }
.btn-plan {
  display: block;
  text-align: center;
  width: 100%;
  padding: .8rem;
  border: 1px solid var(--nude);
  background: transparent;
  color: var(--nude);
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .06em;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn-plan:hover,
.price-card.featured .btn-plan { background: var(--nude); color: var(--bg); }

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
}
.footer-logo span { color: var(--nude); }
footer a { color: var(--muted); text-decoration: none; font-size: .8rem; }
footer a:hover { color: var(--white); }

/* ── REVEAL ANIMATION ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
