*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --card: #1a2030;
  --accent: #f4703a;
  --accent2: #22c55e;
  --text: #e8eaf0;
  --muted: #8b95a8;
  --border: rgba(255,255,255,0.07);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(13,17,23,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__mark {
  width: 38px; height: 38px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.logo__mark:hover { background: var(--accent); color: #fff; }

.logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }

.nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav__link--cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HOME: MOBILE NAV TOGGLE ── */
.nav { display: flex; }

/* ── HOME: INTRO ── */
.intro {
  padding: 120px 24px 20px;
  text-align: center;
}

.intro__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto;
}

/* ── HOME: CARDS SECTION ── */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 56px;
  font-size: 1rem;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff9a6c);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,112,58,0.3);
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.35;
}

.card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── HOME: CONTACT FORM ── */
.contact-section {
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.contact-section .section-title { margin-bottom: 8px; }
.contact-section .section-sub { margin-bottom: 40px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(244,112,58,0.5);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-2px); }

.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  color: #22c55e;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── HOME: FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand__tagline {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col ul a:hover { opacity: 1; }

.kantone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.kantone-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.kantone-grid a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.kantone-grid__current {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── HOME: COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner__text {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 680px;
}

.cookie-banner__text a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-banner__text a:hover { text-decoration: underline; }

.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.cookie-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--decline { background: transparent; color: var(--muted); border: 1px solid var(--border); }

/* ── HOME: WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: bottom 0.3s ease;
}

.wa-float__label {
  background: #fff;
  color: #111;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.wa-float:hover .wa-float__label {
  opacity: 1;
  transform: translateX(0);
}

.wa-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  flex-shrink: 0;
  animation: wa-pulse 2s ease-in-out infinite;
}

.wa-float__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  60%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 32px;
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav__link { font-size: 1.1rem; color: var(--text); }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .kantone-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PARTNER: HERO ── */
.partner-hero {
  padding: 140px 24px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.partner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.partner-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PARTNER: BLOCK ── */
.partner-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.partner-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.partner-logo-row__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.partner-logo-row__tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(244,112,58,0.1);
  border: 1px solid rgba(244,112,58,0.25);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── PARTNER: GROUP LABELS ── */
.group-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── PARTNER: CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.services-grid--top {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 52px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff9a6c);
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,112,58,0.3);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.service-card .feature {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

.service-card .btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  margin-top: auto;
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .btn { opacity: 0.9; transform: translateY(-1px); }

/* ── PARTNER: TOP CARD OVERRIDES ── */
.service-card--top {
  padding: 40px 32px;
  background: #1e2638;
  border-color: rgba(244,112,58,0.18);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.service-card--top::before {
  height: 4px;
}

.service-card--top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-card--top p {
  font-size: 0.9rem;
}

.service-card--top .feature {
  font-size: 0.82rem;
  color: rgba(244,112,58,0.85);
}

.service-card--top .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ── PARTNER: BANNERS ── */
.banners-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.banners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.banners-row a { display: block; border-radius: 10px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.banners-row a:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.banners-row img { display: block; max-width: 300px; width: 100%; height: auto; border-radius: 10px; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--top { grid-template-columns: 1fr; }
  .banners-row { flex-direction: column; align-items: center; }
}

/* ── PARTNER & LEGAL: SIMPLE FOOTER ── */
.simple-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}
.simple-footer p { font-size: 0.82rem; color: var(--muted); }
.simple-footer a { color: var(--muted); text-decoration: none; margin: 0 8px; }
.simple-footer a:hover { color: var(--text); }

/* ── LEGAL: IMPRESSUM / DATENSCHUTZ ── */
.page-content {
  max-width: 760px; margin: 0 auto; padding: 120px 24px 80px;
}
.page-content h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 48px;
}
.page-content h2 {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin: 36px 0 12px;
}
.page-content p,
.page-content li { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.page-content a { color: var(--accent); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }
