/* ==========================================================================
   fakturus.formular — Landing Page Styles
   Scoped under .landing to avoid conflicts with the app dashboard theme.
   ========================================================================== */

.landing {
  --bg-deep: #060a12;
  --bg-base: #0a0e17;
  --bg-surface: #111827;
  --bg-elevated: #1e293b;
  --border: #334155;
  --border-subtle: #1e293b;

  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-glow: rgba(245, 158, 11, 0.15);
  --amber-glow-strong: rgba(245, 158, 11, 0.3);
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.12);
  --cyan: #22d3ee;
  --cyan-dim: #0e7490;
  --red: #ef4444;

  --text-headline: #f8fafc;
  --text-body: #94a3b8;
  --text-muted: #64748b;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1180px;
  --header-height: 72px;

  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background atmosphere */
.landing::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245,158,11,0.06), transparent),
    radial-gradient(circle at 80% 60%, rgba(34,211,238,0.03), transparent);
  pointer-events: none;
  z-index: 0;
}
.landing::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.landing > * { position: relative; z-index: 1; }

.landing a { color: var(--amber); text-decoration: none; transition: color .2s; }
.landing a:hover { color: var(--amber-light); }

/* Utilities */
.landing .l-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.landing .section-pad { padding: 100px 0; }

/* ===== HEADER ===== */
.landing .l-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-height);
  display: flex; align-items: center;
  background: rgba(6, 10, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background .3s, border-color .3s;
}
.landing .l-header.scrolled {
  background: rgba(10, 14, 23, 0.95);
  border-bottom-color: var(--border);
}
.landing .header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.landing .logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; color: var(--text-headline);
  letter-spacing: -0.02em;
}
.landing .logo span { color: var(--amber); }
.landing .logo-icon { width: 28px; height: 28px; margin-right: 8px; vertical-align: middle; border-radius: 6px; }
.landing .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; margin: 0; padding: 0; }
.landing .nav-links a {
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  transition: color .2s;
}
.landing .nav-links a:hover { color: var(--text-headline); }

/* Buttons */
.landing .btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 10px 22px; border-radius: var(--radius); border: none;
  cursor: pointer; transition: all .25s ease;
  text-decoration: none;
}
.landing .btn-primary {
  background: var(--amber); color: var(--bg-deep) !important;
}
.landing .btn-primary:hover {
  background: var(--amber-light); color: var(--bg-deep) !important;
  box-shadow: 0 0 24px var(--amber-glow-strong);
  transform: translateY(-1px);
}
.landing .btn-secondary {
  background: transparent; color: var(--text-headline) !important;
  border: 1px solid var(--border);
}
.landing .btn-secondary:hover {
  border-color: var(--amber);
  box-shadow: 0 0 16px var(--amber-glow);
  color: var(--text-headline) !important;
}

/* Hamburger */
.landing .hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.landing .hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-body);
  position: absolute; left: 4px; transition: all .3s;
}
.landing .hamburger span:nth-child(1) { top: 9px; }
.landing .hamburger span:nth-child(2) { top: 15px; }
.landing .hamburger span:nth-child(3) { top: 21px; }
.landing .hamburger.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.landing .hamburger.active span:nth-child(2) { opacity: 0; }
.landing .hamburger.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

.landing .mobile-menu {
  display: none; position: fixed; top: var(--header-height); left: 0; right: 0;
  background: rgba(10,14,23,0.97); backdrop-filter: blur(16px);
  padding: 24px; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 16px; z-index: 99;
}
.landing .mobile-menu.active { display: flex; }
.landing .mobile-menu a {
  display: block; padding: 12px 0; color: var(--text-body);
  font-size: 18px; border-bottom: 1px solid var(--border-subtle);
}

/* ===== HERO ===== */
.landing .hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.landing .hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.landing .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.landing .hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--text-headline);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.landing .hero-text h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative;
}
.landing .hero-text h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  opacity: 0.4;
  border-radius: 2px;
}
.landing .hero-subtitle {
  font-size: 19px;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}
.landing .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.landing .hero-meta {
  margin-top: 24px;
  display: flex; gap: 24px;
  font-size: 14px; color: var(--text-muted);
}
.landing .hero-meta span { display: flex; align-items: center; gap: 6px; }
.landing .hero-meta svg { width: 14px; height: 14px; opacity: 0.6; }

/* Code Window */
.landing .code-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(245,158,11,0.05),
    0 20px 60px rgba(0,0,0,0.4);
  transition: box-shadow .4s, transform .4s;
}
.landing .code-window:hover {
  box-shadow:
    0 0 60px rgba(245,158,11,0.1),
    0 24px 72px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.landing .code-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.landing .dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.landing .dot-red { background: #ef4444; }
.landing .dot-yellow { background: #f59e0b; }
.landing .dot-green { background: #10b981; }
.landing .code-chrome-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 12px;
}
.landing .code-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.75;
  overflow-x: auto;
}
.landing .code-body code { display: block; white-space: pre; }
.landing .c-tag { color: #ef4444; }
.landing .c-attr { color: var(--amber); }
.landing .c-val { color: var(--emerald); }
.landing .c-str { color: var(--cyan); }
.landing .c-cmt { color: var(--text-muted); font-style: italic; }

/* ===== TRUST BAR ===== */
.landing .trust-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
  background: rgba(17, 24, 39, 0.4);
}
.landing .trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.landing .trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--text-headline);
  white-space: nowrap;
}
.landing .trust-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 18px;
}
.landing .trust-icon-de { background: var(--amber-glow); color: var(--amber); }
.landing .trust-icon-lock { background: var(--emerald-glow); color: var(--emerald); }
.landing .trust-icon-eu { background: rgba(34,211,238,0.1); color: var(--cyan); }
.landing .trust-icon-free { background: var(--amber-glow); color: var(--amber); }

/* ===== STEPS ===== */
.landing .steps { background: var(--bg-base); }
.landing .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.landing .section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.landing .section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-headline);
  letter-spacing: -0.02em;
}
.landing .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.landing .steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--amber), var(--border), transparent);
  z-index: 0;
}
.landing .step-card { text-align: center; position: relative; z-index: 1; }
.landing .step-number {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--amber);
  transition: all .3s;
}
.landing .step-card:hover .step-number {
  border-color: var(--amber);
  box-shadow: 0 0 20px var(--amber-glow);
}
.landing .step-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 10px;
}
.landing .step-card p {
  font-size: 15px;
  color: var(--text-body);
  max-width: 300px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.landing .features { background: var(--bg-deep); }
.landing .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.landing .feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.landing .feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}
.landing .feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.landing .feature-card:hover::before {
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}
.landing .feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--amber-glow);
  color: var(--amber);
  font-size: 20px;
  margin-bottom: 16px;
}
.landing .feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 8px;
}
.landing .feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.landing .badge-soon {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(239,68,68,0.1);
  color: var(--red);
  margin-left: 8px;
  vertical-align: middle;
}
.landing .badge-new {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--emerald-glow);
  color: var(--emerald);
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== CODE SHOWCASE ===== */
.landing .code-showcase { background: var(--bg-base); }
.landing .code-tabs {
  display: flex; gap: 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.landing .code-tab {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  padding: 10px 20px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  transition: all .2s;
}
.landing .code-tab.active {
  background: var(--bg-surface);
  color: var(--amber);
  border-color: var(--border);
}
.landing .code-tab:not(.active):hover { color: var(--text-body); }
.landing .code-showcase-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 32px;
  position: relative;
}
.landing .code-showcase-window pre {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.8;
  overflow-x: auto;
  color: var(--text-body);
  margin: 0;
}
.landing .code-panel { display: none; }
.landing .code-panel.active { display: block; }
.landing .copy-btn {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
}
.landing .copy-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ===== PRICING ===== */
.landing .l-pricing { background: var(--bg-deep); }
.landing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.landing .price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
}
.landing .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.landing .price-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 40px var(--amber-glow);
}
.landing .price-card.featured:hover {
  box-shadow: 0 0 60px var(--amber-glow-strong), 0 16px 48px rgba(0,0,0,0.3);
}
.landing .price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.landing .price-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 4px;
}
.landing .price-card .price-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.landing .price-amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 8px;
}
.landing .price-amount .currency {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--text-headline);
}
.landing .price-amount .value {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  color: var(--text-headline);
  line-height: 1;
  letter-spacing: -0.03em;
}
.landing .price-amount .period {
  font-size: 15px;
  color: var(--text-muted);
  margin-left: 4px;
}
.landing .price-submissions {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.landing .price-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}
.landing .price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-body);
}
.landing .price-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--emerald-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.landing .price-features li.disabled {
  color: var(--text-muted);
}
.landing .price-features li.disabled::before {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6H9' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-color: rgba(100,116,139,0.1);
}
.landing .price-card .btn { width: 100%; justify-content: center; padding: 12px 22px; }

/* ===== FAQ ===== */
.landing .l-faq { background: var(--bg-base); }
.landing .faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.landing .faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.landing .faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 17px; font-weight: 600;
  color: var(--text-headline);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.landing .faq-question:hover { color: var(--amber); }
.landing .faq-arrow {
  width: 20px; height: 20px;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--text-muted);
}
.landing .faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--amber); }
.landing .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.landing .faq-item.open .faq-answer {
  max-height: 300px;
}
.landing .faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===== FOOTER ===== */
.landing .l-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  background: var(--bg-deep);
}
.landing .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 32px;
}
.landing .footer-brand .logo { margin-bottom: 12px; }
.landing .footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}
.landing .footer-links {
  display: flex;
  gap: 48px;
}
.landing .footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.landing .footer-col ul { list-style: none; padding: 0; margin: 0; }
.landing .footer-col li { margin-bottom: 8px; }
.landing .footer-col a {
  font-size: 14px; color: var(--text-muted);
  transition: color .2s;
}
.landing .footer-col a:hover { color: var(--text-headline); }
.landing .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SCROLL REVEAL ===== */
.landing .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.landing .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.landing .reveal-delay-1 { transition-delay: 0.1s; }
.landing .reveal-delay-2 { transition-delay: 0.2s; }
.landing .reveal-delay-3 { transition-delay: 0.3s; }

/* ===== CURSOR GLOW ===== */
.landing .glow-effect {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(245,158,11,0.04), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 0;
}
.landing .glow-effect.active { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .landing .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .landing .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .landing .hero-text { text-align: center; }
  .landing .hero-subtitle { margin: 0 auto 32px; }
  .landing .hero-actions { justify-content: center; }
  .landing .hero-meta { justify-content: center; }
  .landing .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .landing .steps-grid::before { display: none; }
  .landing .features-grid { grid-template-columns: 1fr 1fr; }
  .landing .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .landing .trust-items { gap: 24px; }
  .landing .nav-links { display: none; }
  .landing .hamburger { display: block; }
  .landing .footer-inner { flex-direction: column; }
  .landing .footer-links { flex-wrap: wrap; gap: 32px; }
  .landing .footer-bottom { flex-direction: column; text-align: center; }
  .landing .code-body { font-size: 12px; padding: 16px; }
}
@media (max-width: 480px) {
  .landing .features-grid { grid-template-columns: 1fr; }
  .landing .trust-items { flex-direction: column; align-items: center; gap: 16px; }
  .landing .section-pad { padding: 60px 0; }
  .landing { font-size: 16px; }
}
