/* =========================================================
   EXCLUSIVE JOBS GERMANY — Design System
   Inspired by Vercel: white canvas · Geist · shadow-borders
   ========================================================= */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:     #171717;
  --white:     #ffffff;
  --gray-50:   #fafafa;
  --gray-100:  #ebebeb;
  --gray-400:  #808080;
  --gray-500:  #666666;
  --gray-600:  #4d4d4d;
  --link:      #0072f5;
  --focus:     hsla(212, 100%, 48%, 1);

  /* Shadow-as-border (Vercel signature) */
  --ring:      rgba(0,0,0,0.08) 0px 0px 0px 1px;
  --ring-gray: rgb(235,235,235) 0px 0px 0px 1px;
  --card-shadow:
    rgba(0,0,0,0.08) 0px 0px 0px 1px,
    rgba(0,0,0,0.04) 0px 2px 2px,
    rgba(0,0,0,0.04) 0px 8px 8px -8px,
    #fafafa 0px 0px 0px 1px inset;

  --r-6:    6px;
  --r-8:    8px;
  --r-12:   12px;
  --r-pill: 9999px;

  --font:      'Geist', Arial, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --max:           1200px;
  --gutter:        32px;
  --header-top-h:  56px;
  --header-lang-h: 40px;
  --header-h:      96px;
  --sp-section:    96px;
  --trans:         .15s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: 'liga';
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: rgba(0,0,0,0.08) 0px 1px 0px;
}
.header-top { border-bottom: 1px solid var(--gray-100); }
.header-top-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--header-top-h); gap: 16px;
}
.logo {
  display: flex; flex-direction: column; text-decoration: none;
  line-height: 1.1; flex-shrink: 0; color: var(--black);
}
.logo-main { font-size: .95rem; font-weight: 600; letter-spacing: -.3px; }
.logo-sub   { font-size: .6rem; font-weight: 500; color: var(--gray-500); letter-spacing: .05em; text-transform: uppercase; }
.logo:hover { text-decoration: none; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav-link {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: var(--r-6);
  font-size: 14px; font-weight: 500; color: var(--black);
  text-decoration: none; transition: background var(--trans);
}
.site-nav-link:hover { background: var(--gray-50); text-decoration: none; }
.site-nav-link.cta {
  background: var(--black); color: var(--white);
  margin-left: 4px;
}
.site-nav-link.cta:hover { background: #2a2a2a; }

/* Language bar */
.header-lang {
  border-bottom: 1px solid var(--gray-100);
  overflow-x: auto; scrollbar-width: none;
}
.header-lang::-webkit-scrollbar { display: none; }
.lang-nav {
  display: flex; flex-wrap: nowrap; gap: 3px;
  padding: 6px 0; min-width: max-content;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; font-size: 11px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--gray-600); background: var(--white);
  box-shadow: var(--ring-gray); border-radius: var(--r-6);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background var(--trans), color var(--trans);
}
.lang-btn:hover { background: var(--gray-50); color: var(--black); text-decoration: none; }
.lang-btn.active { background: var(--black); color: var(--white); box-shadow: none; }
.flag-sm   { font-size: .8rem; }
.lang-code { font-size: .58rem; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: calc(var(--header-h) + 80px) var(--gutter) var(--sp-section);
  text-align: center;
  position: relative; overflow: hidden;
  background-image: url('/assets/img/hero-banner.png');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.22) 0%,
    rgba(0,0,0,.10) 50%,
    rgba(0,0,0,.25) 100%
  );
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Hero text: force white on photo background ── */
.hero, .hero h1, .hero h2, .hero p,
.hero .hero-pre, .hero .hero-tagline, .hero .hero-intro,
.hero .hero-eyebrow { color: #fff; }

/* ── Hero decorations (Exclusive: Discreet B&W) ── */
.hero-backdrop {
  position: absolute; pointer-events: none; user-select: none;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 800; letter-spacing: -.06em;
  color: rgba(23,23,23,.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; line-height: 1;
}

/* ── nanobanana mark ── */
.nb-mark {
  margin-top: 36px;
  font-size: .6rem; letter-spacing: .3em;
  text-transform: lowercase; font-weight: 400;
  color: rgba(23,23,23,.16);
}
.hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 500;
  color: #fff; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600; line-height: 1.1; color: #fff;
  margin-bottom: 24px; letter-spacing: -2.4px;
}
.hero-tagline {
  font-size: 1.1rem; color: rgba(255,255,255,.88);
  font-weight: 400; margin-bottom: 16px; line-height: 1.56;
}
.hero-intro {
  font-size: 1rem; color: rgba(255,255,255,.78);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.56;
}
.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 10px 18px; text-decoration: none;
  font-weight: 500; font-size: 14px; border-radius: var(--r-6);
  transition: background var(--trans); flex-shrink: 0;
}
.btn-wa:hover { background: #2a2a2a; text-decoration: none; }
.btn-wa-lg { font-size: 15px; padding: 12px 22px; }

.btn-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--black);
  padding: 10px 18px; text-decoration: none;
  font-weight: 500; font-size: 14px; border-radius: var(--r-6);
  box-shadow: var(--ring); transition: background var(--trans);
}
.btn-more:hover { background: var(--gray-50); text-decoration: none; }

/* ── SECTION DIVIDER ────────────────────────────────────── */
.section-divider { width: 100%; height: 1px; background: var(--black); margin: 0; }

/* ── SECTION CHROME ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-pre {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 600; color: var(--black);
  letter-spacing: -2.4px; line-height: 1.2; margin-bottom: 16px;
}
.section-rule { display: none; }

/* ── BENEFITS ───────────────────────────────────────────── */
.benefits {
  padding: var(--sp-section) 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.benefit-card {
  background: var(--white); padding: 28px 18px;
  text-align: center; border-radius: var(--r-8);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--trans);
}
.benefit-card:hover {
  box-shadow:
    rgba(0,0,0,0.12) 0px 0px 0px 1px,
    rgba(0,0,0,0.06) 0px 2px 4px,
    rgba(0,0,0,0.06) 0px 10px 16px -8px,
    #fafafa 0px 0px 0px 1px inset;
}
.benefit-icon { font-size: 1.6rem; margin-bottom: 14px; display: flex; justify-content: center; }
.benefit-card h3 {
  font-size: .78rem; color: var(--black); margin-bottom: 6px;
  font-weight: 600; letter-spacing: -0.32px;
}
.benefit-card p { font-size: .78rem; color: var(--gray-600); line-height: 1.5; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about { padding: var(--sp-section) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--black); margin: 12px 0 24px;
  font-weight: 600; letter-spacing: -1.28px; line-height: 1.25;
}
.about-text p { color: var(--gray-600); font-size: .95rem; line-height: 1.56; }
.about-facts { display: flex; gap: 36px; margin-bottom: 28px; }
.fact { display: flex; flex-direction: column; align-items: flex-start; }
.fact-num {
  font-size: 2.5rem; color: var(--black); font-weight: 600;
  line-height: 1; letter-spacing: -2.4px;
}
.fact-label {
  font-size: .65rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gray-500); margin-top: 4px;
}

.about-highlights { display: flex; flex-direction: column; gap: 10px; }
.highlight-card {
  background: var(--white); padding: 20px 22px;
  border-radius: var(--r-8); box-shadow: var(--card-shadow);
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow var(--trans);
}
.highlight-card:hover {
  box-shadow:
    rgba(0,0,0,0.12) 0px 0px 0px 1px,
    rgba(0,0,0,0.06) 0px 2px 4px,
    #fafafa 0px 0px 0px 1px inset;
}
.highlight-icon { flex-shrink: 0; color: var(--gray-400); padding-top: 2px; }
.highlight-icon svg { width: 20px; height: 20px; }
.highlight-card h4 {
  font-size: .82rem; color: var(--black); margin-bottom: 3px;
  font-weight: 600; letter-spacing: -0.32px;
}
.highlight-card p { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-section) 0; text-align: center;
  border-top: 1px solid var(--black);
}
.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--black); margin-bottom: 14px;
  font-weight: 600; letter-spacing: -2.4px; line-height: 1.17;
}
.cta-section p { color: var(--gray-600); margin-bottom: 36px; font-size: 1rem; }

/* ── LANG SELECTOR ──────────────────────────────────────── */
.lang-selector-hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 60px) var(--gutter) 80px;
  text-align: center;
}
.lang-selector-hero .container { width: 100%; }
.lang-selector-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600; color: var(--black); line-height: 1.17;
  margin-bottom: 16px; letter-spacing: -2.4px;
}
.lang-selector-hero h1 span { color: var(--gray-500); font-weight: 400; }
.flag-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; max-width: 680px; margin: 40px auto 0;
}
.flag-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 12px; text-decoration: none;
  background: var(--white); border-radius: var(--r-8);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--trans), transform var(--trans);
}
.flag-item:hover {
  transform: translateY(-2px); text-decoration: none;
  box-shadow:
    rgba(0,0,0,0.12) 0px 0px 0px 1px,
    rgba(0,0,0,0.06) 0px 4px 8px,
    #fafafa 0px 0px 0px 1px inset;
}
.flag-emoji { font-size: 1.75rem; margin-bottom: 8px; line-height: 1; }
.flag-label { font-size: .68rem; color: var(--black); font-weight: 500; margin-bottom: 2px; }
.flag-code  { font-size: .6rem; color: var(--gray-500); letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--gray-100);
  text-align: center;
}
.footer-legal {
  font-size: 12px; color: var(--gray-500); max-width: 740px;
  margin: 0 auto 24px; line-height: 1.5; padding: 16px 20px;
  background: var(--gray-50); border-radius: var(--r-8);
  box-shadow: var(--ring); text-align: left;
}
.footer-nav {
  display: flex; gap: 20px; justify-content: center;
  align-items: center; flex-wrap: wrap; margin-bottom: 14px;
}
.footer-nav a {
  color: var(--gray-500); text-decoration: none;
  font-size: .75rem; font-weight: 500; letter-spacing: .04em;
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--black); }
.footer-nav span { color: var(--gray-100); font-size: .6rem; }
.copyright { font-size: .7rem; color: var(--gray-500); }

/* ── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: rgba(0,0,0,0.08) 0px -1px 0px, rgba(0,0,0,0.06) 0px -4px 12px;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; font-size: 14px;
}
.cookie-banner p { color: var(--gray-600); flex: 1; line-height: 1.43; }
.cookie-banner a { color: var(--link); font-weight: 500; }
.btn-cookie-accept {
  background: var(--black); color: var(--white); border: none;
  border-radius: var(--r-6); padding: 8px 18px;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  cursor: pointer; flex-shrink: 0; transition: background var(--trans);
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: #2a2a2a; }

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-page { padding: calc(var(--header-h) + 60px) 0 80px; min-height: 100vh; }
.legal-page .page-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--black);
  margin-bottom: 8px; font-weight: 600; letter-spacing: -1.28px;
}
.legal-page .page-sub { color: var(--gray-500); margin-bottom: 40px; font-size: 14px; }
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: .9rem; color: var(--black); margin: 36px 0 10px;
  font-weight: 600; letter-spacing: -0.32px;
}
.legal-content p { color: var(--gray-600); font-size: .9rem; margin-bottom: 12px; line-height: 1.56; }
.legal-content a { color: var(--link); }
.legal-content ul { color: var(--gray-600); font-size: .9rem; padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-rule { width: 40px; height: 1px; background: var(--gray-100); margin: 40px 0; }

/* ── PARTNER PAGE ───────────────────────────────────────── */
.partner-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--gutter);
}
.partner-inner { max-width: 560px; text-align: center; }
.partner-inner h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.partner-inner > p { color: var(--gray-600); margin-bottom: 40px; }
.partner-links { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.partner-links .partner-link { min-width: 320px; justify-content: center; }

/* ── FEATURES ────────────────────────────────────────────── */
.features { padding: var(--sp-section) 0; }
.features .section-header { margin-bottom: 40px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--r-12);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover {
  box-shadow: rgba(0,0,0,0.12) 0px 0px 0px 1px, rgba(0,0,0,0.08) 0px 4px 8px, rgba(0,0,0,0.06) 0px 12px 24px -8px, #fafafa 0px 0px 0px 1px inset;
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-50);
  box-shadow: var(--ring-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--black); }
.feature-card h3 { font-size: 1rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; color: var(--black); }
.feature-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

/* ── STICKY WHATSAPP ─────────────────────────────────────── */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-sticky:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.55); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  :root { --gutter: 24px; }
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .site-nav .site-nav-link:not(.cta) { display: none; }
  :root { --header-h: 88px; --header-top-h: 48px; }
  .flag-grid { grid-template-columns: repeat(3, 1fr); }
  .about-facts { gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
  :root { --sp-section: 64px; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .flag-grid { grid-template-columns: repeat(2, 1fr); }
  :root { --gutter: 16px; }
}
