/* ─── FONTS ─── */
/* Omnes Bold – lokal */
@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Roboto Condensed – lokal (kein Google-CDN, kein DSGVO-Thema) */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/roboto-condensed-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/roboto-condensed-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-condensed-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-condensed-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── VARIABLES ─── */
:root {
  --midnight:   #060e1e;
  --navy:       #0d1f3c;
  --navy-mid:   #152d54;
  --accent:     #2563eb;
  --accent-lt:  #3b82f6;
  --accent-dim: rgba(37, 99, 235, 0.12);
  --sky:        #0ea5e9;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --light:      #f1f5f9;
  --text:       #0f172a;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --border-mid: #cbd5e1;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --transition: 0.2s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-lt); }

/* ─── BASE ─── */
body {
  font-family: 'Roboto Condensed', 'Omnes', Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Omnes', 'Roboto Condensed', Arial, sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── NAVIGATION ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 40px;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.nav-links li a {
  font-family: 'Omnes', 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-lang {
  font-size: 0.82rem;
  color: var(--muted) !important;
  opacity: 0.75;
  letter-spacing: 0.3px;
}
.nav-lang:hover { opacity: 1; color: var(--text) !important; }

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  font-family: 'Omnes', 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-lt);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-image: url('../assets/banner.jpeg');
  background-image: image-set(url('../assets/banner.webp') type('image/webp'), url('../assets/banner.jpeg') type('image/jpeg'));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,14,30,0.96) 0%,
    rgba(13,31,60,0.88) 45%,
    rgba(21,45,84,0.60) 75%,
    rgba(14,165,233,0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(14,165,233,0.35);
  border-radius: 20px;
  background: rgba(14,165,233,0.08);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--sky);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
}

.hero-stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-stat-num {
  display: block;
  font-family: 'Omnes', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Omnes', 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.section-more {
  text-align: center;
  margin-top: 40px;
}

.news-page-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.news-page-nav-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.news-page-nav-link:hover { color: var(--accent-lt); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-mid);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── SECTIONS ─── */
.section { padding: 96px 0; }
.section.bg-light { background: var(--off-white); }
.section.bg-navy  { background: var(--navy); }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .overline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  font-weight: 700;
}
.section-title.light .overline { color: var(--sky); }
.section-title.light h2 { color: var(--white); }
.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-title.light p { color: rgba(255,255,255,0.6); }

.section-footer { text-align: center; margin-top: 48px; }

/* ─── GRID ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ─── SERVICE CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sky));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card:hover::after { opacity: 1; }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border-radius: 12px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.72; }

a.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.card-link:hover { text-decoration: none; }

.card-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── WHY-US PILLARS ─── */
.why-us-section {
  background: linear-gradient(145deg, #0a1628 0%, #0d1f3c 50%, #152d54 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: -40%; left: 55%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.pillar {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition);
}
.pillar:hover {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.3);
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: rgba(37,99,235,0.15);
  border-radius: 50%;
}
.pillar-icon--logo {
  width: auto; height: auto;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0;
}

.pillar h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.pillar p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; }

/* ─── NEWS CARDS ─── */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
  color: var(--text);
}

.news-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 700;
}

.news-card > .news-card-body > p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
  flex: 1;
}

.read-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.3px;
  transition: color var(--transition), gap var(--transition);
}
.news-card:hover .read-more { gap: 10px; }

/* ─── NEWS POST INLINE EXPAND ─── */
.post-expand {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.post-tags { margin-bottom: 16px; }

.news-card.expanded { grid-column: 1 / -1; }

.close-post-btn {
  margin-top: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Omnes', 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.close-post-btn:hover { color: var(--navy); }

/* ─── POST BODY ─── */
.post-body { line-height: 1.82; color: var(--text); }
.post-body h2, .post-body h3 { margin: 28px 0 12px; color: var(--navy); }
.post-body p  { margin-bottom: 16px; color: var(--muted); }
.post-body ul, .post-body ol { margin: 10px 0 16px 22px; color: var(--muted); line-height: 1.8; }
.post-body li { margin-bottom: 5px; }
.post-body strong { color: var(--navy); }
.post-body a { color: var(--accent); }

.post-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ─── TECHNOLOGIEN & TOOLS ─── */
.tech-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tech-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  display: inline-block;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: default;
}

.tech-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

@media (max-width: 960px) {
  .tech-groups { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tech-groups { grid-template-columns: 1fr; }
}

/* ─── ORACLE CORE TECHNOLOGIES ─── */
.oracle-core-block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-mid);
}

.oracle-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.oracle-core-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.oracle-core-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.oracle-core-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
}

.oracle-core-body { flex: 1; min-width: 0; }

.oracle-core-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.oracle-core-abbr {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

.oracle-core-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.oracle-core-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 4px;
  padding: 0;
}

.oracle-core-list li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.oracle-core-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.backup-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .oracle-core-grid  { grid-template-columns: 1fr; }
  .backup-tools-grid { grid-template-columns: 1fr; }
}

/* ─── FEATURED SOLUTIONS (SharePlex / CHRONOS) ─── */
.featured-solutions {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-mid);
}

.featured-solutions-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  text-align: center;
}

.solution-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.solution-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-vendor-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.solution-partner-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: var(--light);
  color: var(--muted);
  border: 1px solid var(--border-mid);
}

.solution-partner-badge--primary {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(37,99,235,0.3);
}

.solution-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.03em;
}

.solution-tagline {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.solution-feature-icon {
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.solution-feature div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solution-feature strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.solution-feature span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.solution-usecases {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.solution-usecase-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .solution-cards { grid-template-columns: 1fr; }
}

/* ─── COMMUNITY ENGAGEMENT ─── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.community-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.community-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  color: var(--text);
}

.community-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
}

.community-body { flex: 1; }

.community-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.community-item h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.community-item p  { font-size: 0.91rem; color: var(--muted); line-height: 1.65; }

/* ─── PARTNER SECTION ─── */
.partner-cat-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.partner-cat-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.partner-section { margin-top: 52px; }

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

.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.partner-card-logo { height: 52px; object-fit: contain; margin: 0 0 18px; }
.partner-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); font-weight: 700; }
.partner-fullname { font-size: 0.8rem !important; color: var(--muted) !important; margin-bottom: 10px !important; }
.partner-card p { color: var(--muted); font-size: 0.91rem; line-height: 1.65; }
.partner-url {
  margin-top: 16px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}
.partner-url:hover { color: var(--accent-lt); }

/* ─── CONTACT SECTION ─── */
.contact-section {
  background: linear-gradient(145deg, #060e1e 0%, #0d1f3c 60%, #152d54 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-section h2 { color: var(--white); margin-bottom: 8px; }
.contact-section > .container > p { color: rgba(255,255,255,0.65); margin-bottom: 6px; font-size: 1rem; }
.contact-section a { color: var(--sky); }
.contact-section a:hover { color: var(--white); }

.contact-divider {
  width: 40px; height: 3px;
  background: var(--accent);
  margin: 16px auto 32px;
  border-radius: 2px;
}

/* ─── CONTACT INFO (phone + hours) ─── */
.contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.contact-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}
.contact-phone:hover { color: var(--white); }
.contact-hours {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.contact-hours small { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ─── CONTACT FORM ─── */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.contact-form input[name="_honey"] { display: none; }

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

.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-lt);
  background: rgba(255,255,255,0.11);
}

.form-submit { margin-top: 8px; }

.form-feedback {
  display: none;
  max-width: 640px;
  margin: 20px auto 0;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}
.form-success { background: #065f46; border: 1px solid #10b981; color: #ffffff; }
.form-error   { background: #7f1d1d; border: 1px solid #f87171; color: #ffffff; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.35);
  padding: 28px 32px;
  font-size: 0.86rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links { display: flex; gap: 4px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: linear-gradient(130deg, var(--midnight) 0%, var(--navy) 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 8px; }
.page-header p  { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

/* ─── POST WRAPPER (impressum / datenschutz) ─── */
.post-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 32px;
}
.post-wrapper h2 { margin: 36px 0 12px; font-size: 1.2rem; color: var(--navy); }
.post-wrapper p  { color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.post-wrapper ul { margin: 8px 0 16px 22px; color: var(--muted); line-height: 1.8; }
.post-wrapper li { margin-bottom: 4px; }
.post-wrapper strong { color: var(--navy); }
.post-wrapper a { color: var(--accent); }

/* ─── NEWS LIST (news.html standalone) ─── */
.news-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ─── LOADING / EMPTY STATE ─── */
.state-loading, .state-empty {
  text-align: center; color: var(--muted);
  padding: 56px 0; font-size: 1rem;
  grid-column: 1 / -1;
}

/* scroll shadow is already defined above on line ~90 */

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .grid-3, .news-list, .partner-cards { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .community-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { border-right: none; margin-right: 0; padding-right: 0; min-width: 120px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .grid-3, .grid-4, .news-list, .partner-cards { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  .hero { min-height: 480px; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ─── BOOKING SECTION ─── */
.booking-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.booking-nav button {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 8px 18px;
  font-family: 'Omnes', 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.booking-nav button:hover:not(:disabled) {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.booking-nav button:disabled { opacity: 0.35; cursor: default; }

#booking-week-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  min-width: 220px;
  text-align: center;
}

.booking-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.booking-col { display: flex; flex-direction: column; gap: 8px; }

.booking-day-header {
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.booking-day-header small { font-weight: 400; font-size: 0.8rem; }

.booking-slots { display: flex; flex-direction: column; gap: 6px; }

.booking-slot {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  padding: 8px 4px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.booking-slot:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.booking-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.booking-no-slots {
  display: block;
  text-align: center;
  color: var(--border-mid);
  font-size: 1.1rem;
  padding: 8px 0;
}

.booking-loading,
.booking-error {
  text-align: center;
  color: var(--muted);
  padding: 32px 0;
  grid-column: 1 / -1;
}
.booking-error   { color: #dc2626; }
.booking-success { color: #16a34a; font-weight: 600; }

/* Booking form */
#booking-form-wrapper {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 8px;
}

.booking-slot-info {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
#booking-slot-label { color: var(--navy); }

#booking-form .form-group { margin-bottom: 14px; }
#booking-form label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
#booking-form input,
#booking-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
}
#booking-form input:focus,
#booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.booking-feedback.success {
  background: #065f46;
  color: #fff;
  border: 1px solid #10b981;
}
.booking-feedback.error {
  background: #7f1d1d;
  color: #fff;
  border: 1px solid #f87171;
}

@media (max-width: 640px) {
  .booking-days { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .booking-slot { font-size: 0.75rem; padding: 6px 2px; }
  .booking-day-header { font-size: 0.72rem; }
}
