/*
Theme Name: NetCell WebPanel
Theme URI: https://netcell-webpanel.de
Description: Marketing theme for NetCell WebPanel — lightweight hosting management.
Author: NetCell IT
Version: 1.0.0
Text Domain: netcell
*/

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nc-primary: #1677ff;
  --nc-primary-dark: #0958d9;
  --nc-secondary: #1677ff;
  --nc-dark: #0B1426;
  --nc-navy: #101D33;
  --nc-text: #1E293B;
  --nc-text-light: #64748B;
  --nc-bg: #ffffff;
  --nc-bg-alt: #F8FAFC;
  --nc-border: #E2E8F0;
  --nc-radius: 12px;
  --nc-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --nc-shadow-lg: 0 4px 6px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.08);
  --nc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nc-container: 1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; text-rendering: optimizeSpeed; }
/* Critical rendering: reduce layout shift */
img { content-visibility: auto; }
body {
  font-family: var(--nc-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--nc-text);
  background: var(--nc-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--nc-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--nc-primary-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--nc-primary);
  color: #fff;
  border-color: var(--nc-primary);
}
.btn-primary:hover {
  background: var(--nc-primary-dark);
  border-color: var(--nc-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(22, 119, 255, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--nc-primary);
  border-color: var(--nc-primary);
}
.btn-outline:hover {
  background: var(--nc-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--nc-primary);
  color: #fff;
  border-color: var(--nc-primary);
}
.btn-blue:hover {
  background: var(--nc-primary-dark);
  border-color: var(--nc-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(22, 119, 255, 0.35);
}


/* ─── Global mobile overflow prevention ─────────────────────────── */


img, table, pre, code { max-width: 100%; }
/* ─── Header ────────────────────────────────────────────────────── */
main, .hero, .features, .highlight, .comparison, .pricing, .site-footer { overflow-x: hidden; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 20, 38, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-logo img { width: 38px; height: 38px; }
.site-logo:hover { color: #fff; }

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1677ff, #0958d9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 1px 4px rgba(9, 88, 217, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 8px 18px; font-size: 13px; }

/* ─── Language Dropdown ──────────────────────────────────────────── */
.lang-dropdown {
  position: relative;
}
.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-dropdown-trigger:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.85);
}
.lang-flag { font-size: 14px; line-height: 1; }
.lang-code { letter-spacing: 0.03em; }
.lang-chevron {
  transition: transform 0.2s;
  opacity: 0.6;
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #0F172A;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 1001;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.15s;
}
.lang-dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.lang-dropdown-item.active {
  color: #fff;
  background: rgba(22,119,255,0.15);
}
.lang-dropdown-item.active svg {
  margin-left: auto;
  color: #1677ff;
}
@media (max-width: 640px) {
  .lang-dropdown-menu { right: auto; left: 0; }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(165deg, #0B1426 0%, #101D33 40%, #0D2847 70%, #0B1426 100%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(22, 119, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(22, 119, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(22, 119, 255, 0.1);
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 100px;
  color: var(--nc-primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, #1677ff, #4096ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-install {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.25s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-install:hover { border-color: rgba(255,255,255,0.15); }

/* Dark code box on light backgrounds (about page, etc.) */
.page-content .hero-install,
.page-body .hero-install {
  background: #0F172A;
  border-color: #1E293B;
}
.page-content .hero-install:hover,
.page-body .hero-install:hover { border-color: #334155; }
.hero-install .hero-code-copy { opacity: 0; transition: opacity 0.2s; }
.hero-install:hover .hero-code-copy { opacity: 1; }

pre.hero-code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  padding: 0 0 2px 0;
  background: none;
  border: none;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  white-space: pre;
  color: rgba(255,255,255,0.8);
}

.hero-code-comment { color: rgba(34, 197, 94, 0.6); font-size: 14px; }
.hero-code-dollar { color: rgba(34,197,94,0.6); font-weight: 700; }

.hero-code-copy {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  flex-shrink: 0;
  align-self: flex-end;
}

.hero-code-copied {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #22C55E;
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

.cta-code {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.25s;
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.cta-code:hover { border-color: rgba(255,255,255,0.15); }
.cta-code code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.cta-code-copy { color: rgba(255,255,255,0.2); font-size: 11px; flex-shrink: 0; }
.cta-code-copied { position: absolute; right: 16px; color: #22C55E; font-size: 11px; font-weight: 600; opacity: 0; transition: opacity 0.2s; }

@media (max-width: 640px) {
  pre.hero-code { font-size: 10px; overflow-x: scroll; -webkit-overflow-scrolling: touch; }
  .hero-install { padding: 8px 12px; }
  .hero-code-copy { display: none; }
}

.hero-image {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.hero-image img {
  width: 100%;
}

.hero-screenshot {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: #0F172A;
}
.hero-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: #0F172A;
  position: relative;
}
.hero-window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #475569;
  flex-shrink: 0;
}
.hero-window-dot:nth-child(1) { background: #EF4444; }
.hero-window-dot:nth-child(2) { background: #F59E0B; }
.hero-window-dot:nth-child(3) { background: #10B981; }
.hero-window-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', 'SFMono-Regular', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  padding: 4px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .hero-window-url { display: none; }
}

.hero-screenshot-inner {
  background: transparent;
  font-size: 0;
  line-height: 0;
  padding: 0 12px 12px;
}

.hero-screenshot-inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Install Strip ─────────────────────────────────────────────── */
.install-strip {
  padding: 0;
  background: #0F172A;
}

.install-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.install-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.install-strip-left strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.install-strip-left span {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.install-strip-cmd {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}

.install-strip-cmd:hover {
  border-color: rgba(22, 119, 255, 0.4);
}

.install-strip-cmd code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 14px;
  color: #E2E8F0;
  user-select: all;
  white-space: nowrap;
}

.install-strip-dollar { color: #22C55E; font-weight: 700; }

.install-strip-copy {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.install-strip-copied {
  position: absolute;
  right: 16px;
  color: #22C55E;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

@media (max-width: 768px) {
  .install-strip-inner { flex-direction: column; text-align: center; }
  .install-strip-left { flex-direction: column; gap: 4px; }
  .install-strip-cmd { width: 100%; overflow-x: auto; }
  .install-strip-cmd code { font-size: 12px; }
}

/* ─── Trust Bar ─────────────────────────────────────────────────── */
.trust-bar {
  padding: 48px 0;
  background: var(--nc-bg);
  border-bottom: 1px solid var(--nc-border);
}

.trust-inner {
  text-align: center;
}

.trust-inner p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nc-text-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--nc-text);
  letter-spacing: -0.02em;
}

.trust-stat span {
  font-size: 14px;
  color: var(--nc-text-light);
}

/* ─── Features Section ──────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--nc-bg);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nc-primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--nc-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--nc-text-light);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px;
  background: var(--nc-bg);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(22, 119, 255, 0.25);
  box-shadow: var(--nc-shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-icon.teal { background: rgba(22, 119, 255, 0.08); color: #1677ff; }
.feature-icon.blue { background: rgba(22, 119, 255, 0.08); color: #1677ff; }
.feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.feature-icon.orange { background: rgba(249, 115, 22, 0.1); color: #F97316; }
.feature-icon.red { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
.feature-icon.green { background: rgba(34, 197, 94, 0.1); color: #22C55E; }

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--nc-text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--nc-text-light);
  line-height: 1.65;
}

/* ─── Highlight Section ─────────────────────────────────────────── */
.highlight {
  padding: 100px 0;
  background: var(--nc-bg-alt);
}

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

.highlight-content h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--nc-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.highlight-content p {
  font-size: 16px;
  color: var(--nc-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.highlight-list {
  list-style: none;
  margin-bottom: 32px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--nc-text);
}

.highlight-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(22, 119, 255, 0.1);
  color: var(--nc-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.highlight-visual {
  border-radius: var(--nc-radius);
  overflow: hidden;
  box-shadow: var(--nc-shadow-lg);
  border: 1px solid var(--nc-border);
}

.highlight-visual img {
  width: 100%;
  border-radius: var(--nc-radius);
}

.highlight-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0fdf8, #f0f9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--nc-radius);
  font-size: 64px;
}

/* ─── Comparison Section ────────────────────────────────────────── */
.comparison {
  padding: 100px 0;
  background: var(--nc-bg);
}

.comparison-table-wrap {
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 28px;
  text-align: left;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: #FAFBFC; }
.comparison-table tbody tr:hover td:nth-child(2) { background: rgba(22, 119, 255, 0.09); }

.comparison-table thead th {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nc-text-light);
  background: #F8FAFC;
  border-bottom: 2px solid var(--nc-border);
}

.comparison-table thead th:nth-child(2) {
  color: #fff;
  background: linear-gradient(135deg, #1677ff, #0958d9);
  letter-spacing: 0.04em;
  font-size: 13px;
}

.comparison-table tbody tr td:first-child {
  font-weight: 600;
  color: var(--nc-text);
}

.comparison-table td:nth-child(2) {
  font-weight: 600;
  color: var(--nc-text);
  background: rgba(22, 119, 255, 0.04);
  border-left: 1px solid rgba(22, 119, 255, 0.12);
  border-right: 1px solid rgba(22, 119, 255, 0.12);
}

.comparison-table .check { color: var(--nc-primary); font-weight: 600; }
.comparison-table .cross { color: #CBD5E1; }

.comparison-table .price-row td {
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 16px;
  background: #F8FAFC;
  border-top: 2px solid var(--nc-border);
}
.comparison-table .price-row td:nth-child(2) {
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.12), rgba(22, 119, 255, 0.04));
  color: var(--nc-primary);
  font-size: 17px;
}
.comparison-table .price-row td:nth-child(2) strong { color: var(--nc-primary); }

/* ─── Pricing ───────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--nc-bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--nc-bg);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--nc-shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--nc-primary);
  box-shadow: 0 0 0 1px var(--nc-primary), var(--nc-shadow-lg);
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nc-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nc-text);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 44px;
  font-weight: 800;
  color: var(--nc-text);
  letter-spacing: -0.03em;
  margin: 16px 0 4px;
}

.pricing-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--nc-text-light);
}

.pricing-card .price-net {
  font-size: 13px;
  color: var(--nc-text-light);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0;
}

.pricing-card .price-vat {
  font-size: 12px;
  color: var(--nc-text-light);
  margin: -12px 0 8px;
}

.pricing-card .price-desc {
  font-size: 14px;
  color: var(--nc-text-light);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--nc-text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--nc-border);
}

.pricing-features li:last-child { border: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--nc-secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── CTA Section ───────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(165deg, #0B1426 0%, #101D33 50%, #0D2847 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(22, 119, 255, 0.06) 0%, transparent 70%);
}

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

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

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

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--nc-dark);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--nc-primary); }

.footer-trust {
  margin-top: 100%;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-badge-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--nc-primary);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-badge strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.trust-badge span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-top: 2px;
}
@media (max-width: 992px) {
  .footer-badges { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .footer-badges { grid-template-columns: repeat(2, 1fr); }
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact-block strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.footer-contact-block span,
.footer-contact-block a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-contact-block a:hover { color: var(--nc-primary); }
@media (max-width: 768px) {
  .footer-contact { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .footer-contact { grid-template-columns: 1fr; }
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--nc-primary); }

/* ─── Partner Tiers ──────────────────────────────────────────────── */
.partner-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .partner-tiers { grid-template-columns: 1fr; max-width: 480px; }
}
.partner-tier {
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.partner-tier:hover {
  border-color: rgba(22,119,255,0.3);
  transform: translateY(-3px);
  box-shadow: var(--nc-shadow-lg);
}
.partner-tier.featured {
  border-color: var(--nc-primary);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(22,119,255,0.12);
}
.partner-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nc-primary);
  background: rgba(22,119,255,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.partner-tier h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--nc-text);
}
.partner-tier > p {
  color: var(--nc-text-light);
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.55;
}
.partner-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.partner-tier ul li {
  font-size: 14px;
  color: var(--nc-text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.partner-tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--nc-primary);
  font-weight: 700;
}

/* ─── Partner Form ───────────────────────────────────────────────── */
.partner-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 36px;
  box-shadow: var(--nc-shadow);
}
@media (max-width: 600px) {
  .partner-form-wrap { padding: 24px; }
}
.partner-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.partner-form-grid label.full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .partner-form-grid { grid-template-columns: 1fr; }
}
.partner-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-form-grid label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--nc-text);
}
.partner-form-grid input,
.partner-form-grid select,
.partner-form-grid textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid var(--nc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--nc-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-form-grid input:focus,
.partner-form-grid select:focus,
.partner-form-grid textarea:focus {
  outline: none;
  border-color: var(--nc-primary);
  box-shadow: 0 0 0 3px rgba(22,119,255,0.12);
}
.partner-form-grid textarea { resize: vertical; }
.partner-form .btn { width: 100%; }
.partner-form-success {
  text-align: center;
  padding: 20px 0;
}
.partner-form-success h3 { color: var(--nc-primary); margin: 0 0 8px; }
.partner-form-error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* ─── About: Founder / Timeline / Values ────────────────────────── */
.founder-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 28px;
  margin: 24px 0 40px;
  box-shadow: var(--nc-shadow);
}
.founder-avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1677ff, #0958d9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.founder-info h3 { margin: 0 0 4px; font-size: 20px; }
.founder-info .founder-role {
  color: var(--nc-primary);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
}
.founder-info p:last-child { margin: 0; color: var(--nc-text-light); }
@media (max-width: 600px) {
  .founder-card { flex-direction: column; text-align: center; padding: 24px; }
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 24px 0 40px;
  padding: 24px 28px;
  background: var(--nc-bg-alt);
  border-left: 3px solid var(--nc-primary);
  border-radius: 8px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
}
.timeline-item strong {
  color: var(--nc-primary);
  font-weight: 700;
  font-size: 16px;
}
.timeline-item span { color: var(--nc-text); font-size: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 40px;
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: rgba(22,119,255,0.3); transform: translateY(-2px); }
.value-card strong {
  display: block;
  color: var(--nc-text);
  font-size: 16px;
  margin-bottom: 6px;
}
.value-card span {
  display: block;
  color: var(--nc-text-light);
  font-size: 14px;
  line-height: 1.55;
}

/* ─── Screenshot Gallery ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item { cursor: pointer;
  border-radius: var(--nc-radius);
  overflow: hidden;
  border: 1px solid var(--nc-border);
  transition: all 0.3s ease;
  background: var(--nc-bg);
}

.gallery-item:hover {
  box-shadow: var(--nc-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(22, 119, 255, 0.25);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item span {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nc-text);
  text-align: center;
  border-top: 1px solid var(--nc-border);
}

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

/* ─── Page Content (Impressum, AGB, Datenschutz) ────────────────── */
.page-content {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.page-content h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--nc-text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}


.page-body {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nc-text);
}

.page-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--nc-text);
}

.page-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--nc-text);
}

.page-body p { margin-bottom: 16px; }
.page-body ul, .page-body ol { margin: 0 0 16px 24px; }
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--nc-primary); }

/* ─── Cookie Consent Banner ─────────────────────────────────────── */
#nc-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0F172A;
  border-top: 1px solid #1E293B;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.nc-consent-inner {
  max-width: var(--nc-container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nc-consent-text {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
}

.nc-consent-text a {
  color: #1677ff;
  text-decoration: underline;
}

.nc-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nc-consent-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.nc-consent-decline {
  background: transparent;
  color: #94A3B8;
  border: 1px solid #334155;
}
.nc-consent-decline:hover {
  border-color: #64748B;
  color: #E2E8F0;
}

.nc-consent-accept {
  background: #1677ff;
  color: #fff;
}
.nc-consent-accept:hover {
  background: #0958d9;
}

.nc-consent-detailed {
  flex-direction: column;
  gap: 16px;
}

.nc-consent-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-consent-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #1E293B;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color 0.2s;
}

.nc-consent-category:hover { border-color: #334155; }

.nc-consent-category input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #1677ff;
}

.nc-consent-category strong {
  color: #E2E8F0;
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.nc-consent-category span {
  color: #64748B;
  font-size: 12px;
  line-height: 1.4;
}

.nc-consent-service {
  font-weight: 400;
  color: #475569;
  font-size: 11px;
}

.nc-consent-selected {
  background: transparent;
  color: #94A3B8;
  border: 1px solid #334155;
}
.nc-consent-selected:hover {
  border-color: #64748B;
  color: #E2E8F0;
}

@media (max-width: 640px) {
  .nc-consent-inner { flex-direction: column; text-align: left; }
  .nc-consent-buttons { width: 100%; flex-wrap: wrap; }
  .nc-consent-btn { flex: 1; min-width: 120px; }
}

/* ─── About Page Features ───────────────────────────────────────── */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}

.about-feature {
  padding: 28px;
  background: var(--nc-bg-alt);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  transition: all 0.3s;
}

.about-feature:hover {
  border-color: rgba(22, 119, 255, 0.25);
  box-shadow: var(--nc-shadow);
}

.about-feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--nc-text);
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 14px;
  color: var(--nc-text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .about-features { grid-template-columns: 1fr; }
}

/* ─── FAQ Section ──────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  margin-bottom: 12px;
  background: var(--nc-bg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(22, 119, 255, 0.25);
  box-shadow: var(--nc-shadow);
}

.faq-item[open] {
  border-color: rgba(22, 119, 255, 0.2);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--nc-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(22, 119, 255, 0.08);
  color: var(--nc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--nc-text-light);
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer code {
  background: var(--nc-bg-alt);
  border: 1px solid var(--nc-border);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
  color: var(--nc-text);
}
.faq-answer a { color: var(--nc-primary); }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .highlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 20, 38, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.show { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { font-size: 16px; }
  .mobile-toggle { display: block; }
  .site-logo img { width: 28px; height: 28px; }
  
  .header-inner { height: 56px; }
  .lang-dropdown-trigger .lang-code { display: none; }
  .lang-chevron { display: none; }
  .lang-dropdown-trigger { padding: 5px 7px; border: none; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; font-size: 12px; }
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 50px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .trust-stats { gap: 32px; }
  .pricing-card { padding: 20px 16px; }
  .pricing-grid { gap: 12px; }
  .pricing-card .price { font-size: 32px; }
  .pricing-card h3 { font-size: 18px; }
  .pricing-card .price-desc { font-size: 12px; }
  .pricing-features li { padding: 8px 0; font-size: 13px; }
  .site-logo img { width: 28px; height: 28px; }
  .logo-text { font-size: 13px; }
  .logo-text span { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Logo text styling */
.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-text span {
  font-weight: 400;
  opacity: 0.6;
}
@media (max-width: 640px) {
  .logo-text { font-size: 12px; }
}


.price-order-hint {
  font-size: 11px;
  color: #94A3B8;
  text-align: center;
  margin: 8px 0 0;
  font-style: italic;
}
/* ─── Lightbox ──────────────────────────────────────────────────── */
.nc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nc-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.nc-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nc-lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  transition: transform 0.3s;
}
.nc-lightbox.open .nc-lightbox-content img {
  animation: ncLbIn 0.3s ease-out;
}
@keyframes ncLbIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.nc-lightbox-caption {
  margin-top: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nc-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 36px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
  line-height: 1;
}
.nc-lightbox-close:hover { color: #fff; transform: scale(1.1); }
.nc-lightbox-prev,
.nc-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.nc-lightbox-prev { left: 20px; }
.nc-lightbox-next { right: 20px; }
.nc-lightbox-prev:hover,
.nc-lightbox-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
@media (max-width: 640px) {
  .nc-lightbox-prev, .nc-lightbox-next { width: 38px; height: 38px; font-size: 24px; }
  .nc-lightbox-prev { left: 10px; }
  .nc-lightbox-next { right: 10px; }
}

@media (max-width: 640px) {
  #nc-consent-trigger {
    width: 36px;
    height: 36px;
    bottom: 14px;
    left: 14px;
  }
  #nc-consent-trigger svg { width: 15px; height: 15px; }
}
