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

:root {
  --bg:        #080c14;
  --bg-2:      #0d1120;
  --bg-card:   #0f1521;
  --bg-card-2: #141929;
  --border:    rgba(99, 160, 255, 0.12);
  --border-2:  rgba(99, 160, 255, 0.22);
  --blue:      #4e9eff;
  --blue-dim:  #2b6cb8;
  --cyan:      #00d4ff;
  --text:      #e2e8f0;
  --text-dim:  #8da4c0;
  --text-mute: #4a6080;
  --green:     #22d3a0;
  --warn:      #f59e0b;
  --font-sans: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(78, 158, 255, 0.25); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }

/* ===== Focus (Keyboard & Touch accessibility) ===== */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-sans); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 8vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
p  { color: var(--text-dim); }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Layout ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }

.section { padding: 64px 0; }
@media (min-width: 900px) { .section { padding: 96px 0; } }

.dark-section { background: var(--bg-2); }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(8, 12, 20, 0.92);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .nav-inner { padding: 0 24px; height: 96px; }
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 640px) {
  .logo-img { height: 80px; }
}
.footer-logo-img {
  height: 60px;
  opacity: 0.85;
}
@media (hover: hover) {
  .footer-logo-img:hover { opacity: 1; }
}

/* Desktop nav links – hidden on mobile */
.nav-links { display: none; }
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
    color: #fff !important;
    font-weight: 600 !important;
  }
}
/* Hover only on real pointer devices */
@media (min-width: 768px) and (hover: hover) {
  .nav-links a:not(.nav-cta):hover { color: var(--text); background: rgba(78, 158, 255, 0.08); }
  .nav-cta:hover { opacity: 0.9; }
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.3s;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.97);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:last-child { border-bottom: none; }
@media (hover: hover) {
  .mobile-menu a:hover { color: var(--blue); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: box-shadow 0.18s, opacity 0.18s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px; /* touch target */
}
@media (hover: hover) {
  .btn { transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s; }
  .btn:hover { transform: translateY(-1px); }
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 24px rgba(78, 158, 255, 0.3);
}
@media (hover: hover) {
  .btn-primary:hover { box-shadow: 0 8px 36px rgba(78, 158, 255, 0.45); }
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
@media (hover: hover) {
  .btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: rgba(78, 158, 255, 0.06); }
}
.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 84px;
}
@media (min-width: 640px) { .hero { padding-top: 96px; } }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99, 160, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 160, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 100%);
}
@media (min-width: 640px) {
  .hero-grid { background-size: 60px 60px; }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 340px; height: 340px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(78, 158, 255, 0.18) 0%, transparent 70%);
  animation: glow-drift 12s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 260px; height: 260px;
  bottom: 0; left: -60px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  animation: glow-drift 9s ease-in-out infinite alternate-reverse;
}
@media (min-width: 900px) {
  .hero-glow-1 { width: 600px; height: 600px; top: -100px; right: -100px; }
  .hero-glow-2 { width: 400px; height: 400px; }
}
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 15px) scale(1.06); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: 40px 20px;
}
@media (min-width: 640px) { .hero-inner { padding: 60px 24px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(78, 158, 255, 0.1);
  border: 1px solid rgba(78, 158, 255, 0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
@media (min-width: 640px) { .hero-badge { font-size: 0.82rem; margin-bottom: 28px; } }

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline { max-width: 780px; margin-bottom: 20px; }
@media (min-width: 640px) { .hero-headline { margin-bottom: 24px; } }

.hero-sub {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--text-dim);
}
@media (min-width: 640px) { .hero-sub { font-size: 1.1rem; margin-bottom: 36px; } }

/* Mobile: stacked buttons */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-actions .btn { width: 100%; }
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; }
}
@media (min-width: 640px) { .hero-actions { margin-bottom: 60px; gap: 14px; } }

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.stat { display: flex; flex-direction: column; padding-right: 24px; }
.stat-value { font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; color: var(--text); }
.stat-label { font-size: 0.75rem; color: var(--text-mute); letter-spacing: 0.04em; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); margin-right: 24px; }
@media (min-width: 640px) {
  .stat { padding-right: 32px; }
  .stat-value { font-size: 1.2rem; }
  .stat-divider { margin-right: 32px; }
}

/* Scroll indicator – hide on mobile to save space */
.scroll-indicator { display: none; }
@media (min-width: 640px) {
  .scroll-indicator {
    display: flex;
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  .scroll-indicator span {
    display: block;
    width: 22px; height: 36px;
    border: 2px solid var(--border-2);
    border-radius: 12px;
    position: relative;
  }
  .scroll-indicator span::after {
    content: '';
    position: absolute;
    left: 50%; top: 6px;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--blue); border-radius: 2px;
    animation: scroll-bounce 1.8s ease-in-out infinite;
  }
  @keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
  }
}

/* ===== Schlagworte Bar ===== */
.schlagworte-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.schlagworte-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
  justify-content: center;
}
.schlagwort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 20px;
}
.schlagwort-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  flex-shrink: 0;
}
.schlagwort-sep {
  color: var(--border-2);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}
@media (min-width: 640px) {
  .schlagworte-bar { padding: 24px 0; }
  .schlagwort { font-size: 0.82rem; padding: 0 24px; }
}

/* ===== Section Header ===== */
.section-header { text-align: center; margin-bottom: 44px; }
@media (min-width: 640px) { .section-header { margin-bottom: 56px; } }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 12px; }
.section-sub { max-width: 520px; margin: 0 auto; font-size: 1rem; }
@media (min-width: 640px) { .section-sub { font-size: 1.05rem; } }

/* ===== Cards – mobile: single column → tablet: 2 → desktop: 3 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s;
}
@media (min-width: 640px) { .card { padding: 32px; } }
@media (hover: hover) {
  .card:hover {
    border-color: var(--border-2);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(78, 158, 255, 0.08);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
}

/* Featured card: full width always */
.card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(78, 158, 255, 0.08), rgba(0, 212, 255, 0.04));
  border-color: rgba(78, 158, 255, 0.2);
}
@media (min-width: 640px) {
  .card-featured {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 24px;
  }
  .card-featured .card-icon { grid-row: span 3; margin-bottom: 0; }
}

.card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(78, 158, 255, 0.15), rgba(0, 212, 255, 0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card-featured .card-icon { width: 52px; height: 52px; }
.card-featured .card-icon svg { width: 26px; height: 26px; }

.card-list {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.card-list li {
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(78, 158, 255, 0.08);
  border: 1px solid rgba(78, 158, 255, 0.15);
  border-radius: 6px;
  padding: 4px 12px;
}

/* ===== Process – mobile: 1 col → desktop: 2 col ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

.process-step {
  background: var(--bg-2);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  transition: background 0.25s;
}
@media (min-width: 640px) { .process-step { padding: 36px 40px; gap: 24px; } }
@media (hover: hover) {
  .process-step:hover { background: var(--bg-card-2); }
}

.step-number {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(78, 158, 255, 0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
@media (min-width: 640px) { .step-number { font-size: 2.5rem; width: 56px; } }

.step-content h3 { margin-bottom: 8px; }

/* ===== About – mobile: 1 col → desktop: 2 col ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.about-text .section-tag { margin-bottom: 12px; }
.about-text .section-title { text-align: left; margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; font-size: 1rem; }
@media (min-width: 640px) { .about-text p { font-size: 1.02rem; } }

.about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.value-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 500; color: var(--text);
}
.value-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  flex-shrink: 0;
}

/* Tech card */
.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.tech-card-header {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.tc-dot { width: 10px; height: 10px; border-radius: 50%; }
.tc-red    { background: #ff5f57; }
.tc-yellow { background: #febc2e; }
.tc-green  { background: #28c840; }
.tc-title { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); margin-left: 6px; }

.tech-card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .tech-card-body { padding: 24px; gap: 14px; } }

.code-line {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap;
}
@media (min-width: 640px) { .code-line { font-size: 0.82rem; } }
.c-key  { color: var(--text-mute); min-width: 90px; flex-shrink: 0; }
.c-op   { color: var(--blue); flex-shrink: 0; }
.c-val  { color: var(--text); }
.c-warn { color: var(--warn); }
.c-ok   { color: var(--green); }
.cursor-blink { animation: blink 1.1s step-end infinite; color: var(--cyan); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ===== Contact – mobile: 1 col → desktop: 2 col ===== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr 1.4fr; gap: 72px; }
}

.kontakt-text .section-title { text-align: left; margin-bottom: 14px; }
.kontakt-text p { margin-bottom: 24px; font-size: 1rem; }
@media (min-width: 640px) { .kontakt-text p { font-size: 1.02rem; } }

.contact-item {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--blue);
  font-weight: 500; font-size: 0.95rem;
  transition: opacity 0.2s;
  touch-action: manipulation;
  min-height: 44px;
}
@media (hover: hover) { .contact-item:hover { opacity: 0.8; } }
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Form */
.kontakt-form {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
@media (min-width: 640px) { .kontakt-form { padding: 36px; gap: 18px; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; }
label { font-size: 0.82rem; font-weight: 600; color: var(--text); letter-spacing: 0.03em; }

input, select, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS auto-zoom (must be ≥ 16px) */
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-mute); }
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238da4c0'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
select option { background: var(--bg-card); color: var(--text); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(78, 158, 255, 0.12);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: center;
  margin-top: -4px;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name { font-family: var(--font-sans); font-weight: 600; font-size: 1rem; }
.footer-tagline { font-size: 0.83rem; color: var(--text-mute); }
.footer-links { display: flex; gap: 24px; margin: 4px 0; }
.footer-links a {
  font-size: 0.83rem; color: var(--text-mute);
  text-decoration: none; transition: color 0.2s;
  min-height: 44px; display: flex; align-items: center;
}
@media (hover: hover) { .footer-links a:hover { color: var(--blue); } }
.footer-copy { font-size: 0.78rem; color: var(--text-mute); }

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}
