/* ============================================================
   MITYVO – components.css
   Nav, Cards, Buttons, Badges, Pills, Footer, Hero
   ============================================================ */

/* ============================================================
   CANVAS & GLOW OVERLAY
   ============================================================ */

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#hero-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(79, 156, 249, 0.10) 0%, rgba(79, 156, 249, 0.02) 40%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 60% 30%, rgba(103, 232, 249, 0.07) 0%, transparent 60%);
}

main, nav, footer {
  position: relative;
  z-index: 2;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8, 11, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

#main-nav.nav-scrolled {
  background: rgba(8, 11, 18, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 48px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-nav-cta {
  flex-shrink: 0;
  padding: 10px 20px !important;
  font-size: 14px !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 11, 18, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 24px;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--text);
}

.mobile-nav-cta {
  font-size: 16px !important;
  padding: 14px 32px !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(79, 156, 249, 0.45);
  transform: translateY(-1px);
  background: #6aabfa;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(79, 156, 249, 0.50);
  background: rgba(79, 156, 249, 0.06);
  color: var(--text);
}

.btn-sm {
  padding: 10px 18px !important;
  font-size: 13px !important;
}

.btn-muted {
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--primary) !important;
  opacity: 0.7;
}

.btn-muted:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

/* ============================================================
   GLASS CARD
   ============================================================ */

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: rgba(79, 156, 249, 0.28);
  box-shadow: 0 0 36px rgba(79, 156, 249, 0.07);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 156, 249, 0.08);
  border: 1px solid rgba(79, 156, 249, 0.14);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: 10px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.product-card {
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 156, 249, 0.07);
  border: 1px solid rgba(79, 156, 249, 0.12);
  border-radius: var(--radius-md);
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  flex: 1;
  margin-bottom: 24px;
  font-size: 15px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.price-line {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--soft-cyan);
}

.price-muted {
  color: var(--primary);
}

.price-dimmed {
  color: var(--primary);
  opacity: 0.55;
}

/* Status Badges */
.badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.badge-live {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.12);
}

.badge-testphase {
  background: rgba(251, 191, 36, 0.10);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.10);
}

.badge-soon {
  background: rgba(79, 156, 249, 0.08);
  color: var(--primary);
  border: 1px solid rgba(79, 156, 249, 0.14);
}

/* ============================================================
   PRODUCT TILES (kompakte Übersicht Hauptseite)
   ============================================================ */

.products-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.product-tile {
  background: rgba(22, 22, 24, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.product-tile:hover {
  border-color: rgba(79, 156, 249, 0.30);
  transform: translateY(-2px);
}

.product-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.product-tile-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 156, 249, 0.10);
  border: 1px solid rgba(79, 156, 249, 0.20);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tile-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.product-tile-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-tile-badge.live {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.30);
}

.product-tile-badge.testphase {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.30);
}

.product-tile-badge.soon {
  background: rgba(168, 178, 200, 0.10);
  color: #A8B2C8;
  border: 1px solid rgba(168, 178, 200, 0.20);
}

.product-tile-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ECEEF2;
  margin: 0 0 8px 0;
}

.product-tile-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #A8B2C8;
  line-height: 1.6;
  margin: 0;
}

.products-cta-row {
  display: flex;
  justify-content: center;
}

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

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

/* ============================================================
   FEATURED APP SECTION
   ============================================================ */

#featured-app {
  padding: 100px 0;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(103,232,249,0.08);
  border: 1px solid rgba(103,232,249,0.22);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #67E8F9;
  margin-bottom: 20px;
}

.featured-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67E8F9;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.featured-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #ECEEF2;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.featured-text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #A8B2C8;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 400px;
}

.featured-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.featured-pills span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ECEEF2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 6px 14px;
}

.featured-device {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 260px;
  background: #1C1C2E;
  border-radius: 44px;
  padding: 14px 10px 10px;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
}

.phone-top {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.phone-notch {
  width: 72px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.app-video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
}

.phone-bottom {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.phone-homebar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .featured-text { order: 1; }
  .featured-device { order: 2; }
  .featured-text p { max-width: 100%; }
  .phone-frame { width: 220px; }
}

@media (max-width: 768px) {
  #featured-app { padding: 60px 0; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--soft-cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--primary);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--primary);
  opacity: 0.35;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */

#brand-statement {
  padding: 40px 0 80px;
  text-align: center;
}

.brand-statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  opacity: 0.9;
}

/* ============================================================
   INDIVIDUAL SECTION
   ============================================================ */

#individual .individual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.individual-text h2 {
  margin-bottom: 20px;
  text-align: left;
}

.individual-text > p {
  margin-bottom: 28px;
  font-size: 17px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(79, 156, 249, 0.08);
  border: 1px solid rgba(79, 156, 249, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
}

.individual-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 24px;
  text-align: center;
  background: rgba(15, 15, 18, 0.7);
}

.individual-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--primary);
  opacity: 0.6;
  text-transform: uppercase;
}

.individual-card-graphic {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.ig-node-1 { top: 10px; left: 20px; }
.ig-node-2 { bottom: 15px; right: 10px; }
.ig-node-3 { top: 50%; left: 5px; transform: translateY(-50%); opacity: 0.3; }

.individual-card-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================================
   CODE WINDOW (Individual Section)
   ============================================================ */

.code-window-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 0;
}
.code-window-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  color: #A8B2C8;
  text-transform: uppercase;
  font-weight: 600;
}
.code-window-dots {
  display: flex;
  gap: 5px;
}
.dot-red, .dot-yellow, .dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA41; }

.code-tab-row {
  padding: 8px 18px 0;
}
.code-tab {
  display: inline-block;
  background: rgba(79,156,249,0.10);
  border: 1px solid rgba(79,156,249,0.18);
  border-radius: 6px 6px 0 0;
  padding: 4px 12px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: #67E8F9;
}

.code-block {
  padding: 12px 18px 18px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.9;
  border-top: 1px solid rgba(79,156,249,0.15);
}
.code-line { display: block; white-space: nowrap; }
.ln   { color: #3a4560; margin-right: 14px; user-select: none; }
.kw   { color: #67E8F9; }
.var  { color: #ECEEF2; }
.prop { color: #ECEEF2; }
.op   { color: #A8B2C8; }
.str  { color: #A855F7; }
.val  { color: #22C55E; }
.num  { color: #F59E0B; }
.cursor {
  color: #67E8F9;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.code-window-footer {
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ECEEF2;
}

/* ============================================================
   VALUE SECTION
   ============================================================ */

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
}

/* ============================================================
   WHY MITYVO
   ============================================================ */

.why-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  border-color: rgba(79, 156, 249, 0.22);
  box-shadow: 0 0 24px rgba(79, 156, 249, 0.05);
}

.why-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 156, 249, 0.07);
  border: 1px solid rgba(79, 156, 249, 0.12);
  border-radius: var(--radius-md);
}

.why-content h4 {
  margin-bottom: 6px;
  font-size: 15px;
}

.why-content p {
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================================
   FÜR WEN
   ============================================================ */

.target-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.target-pill {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  cursor: default;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.target-pill:hover {
  border-color: rgba(79, 156, 249, 0.35);
  color: var(--text);
  background: rgba(79, 156, 249, 0.06);
  box-shadow: 0 0 18px rgba(79, 156, 249, 0.07);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

#faq {
  padding: 120px 0;
}

#faq .section-header {
  text-align: center;
  margin-bottom: 56px;
}

#faq .section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ECEEF2;
  margin-bottom: 16px;
}

#faq .section-header p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  color: #A8B2C8;
  max-width: 520px;
  margin: 0 auto;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(22, 22, 24, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(79, 156, 249, 0.25);
}

.faq-item.open {
  border-color: rgba(79, 156, 249, 0.30);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ECEEF2;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #4F9CF9;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #A8B2C8;
  line-height: 1.75;
  margin: 0;
}

.faq-hours {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #4F9CF9;
  margin-top: 8px !important;
  font-weight: 500;
}

.faq-answer a {
  color: #4F9CF9;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer strong {
  color: #ECEEF2;
  font-weight: 600;
}

@media (max-width: 768px) {
  #faq {
    padding: 64px 0;
  }

  #faq .section-header h2 {
    font-size: 32px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.open .faq-answer {
    padding: 0 20px 18px;
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */

#kontakt {
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(79, 156, 249, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

#main-footer {
  padding: 48px 0;
  background: rgba(8, 11, 18, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  opacity: 0.7;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  opacity: 1;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--primary);
  opacity: 0.45;
}

.footer-hours {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #A8B2C8;
  margin-top: 8px;
}

.footer-hours a {
  color: #A8B2C8;
  text-decoration: none;
}

.footer-hours a:hover {
  color: #4F9CF9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .why-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-list > :nth-child(4),
  .why-list > :nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  #individual .individual-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .individual-visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .individual-text h2 {
    text-align: center;
  }

  .pill-row {
    justify-content: center;
  }

  .individual-text {
    text-align: center;
  }

  .individual-text .btn-primary {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
