:root {
  color-scheme: light;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --slate-950: #0f172a;
  --slate-900: #111827;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 10px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 0.75rem 1.25rem;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.97);
  border-bottom: 1px solid var(--slate-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--slate-950);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.logo-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.logo-img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--blue-700);
}

.nav-links a.button:hover {
  color: var(--white);
}

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(
      circle at top right,
      rgba(37, 99, 235, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-700);
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: var(--slate-600);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-600);
}

.hero-meta span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.button.primary:hover {
  background: var(--blue-700);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-100);
}

.button.ghost {
  background: transparent;
  border-color: var(--slate-200);
  color: var(--slate-700);
}

.button.small {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--white);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--slate-600);
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}

.card-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}

.grid-3 .card {
  text-align: center;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(37, 99, 235, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: auto;
  max-width: 100%;
}

.hero-display {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.hero-card-header h3 {
  font-size: 1.2rem;
  margin: 0.4rem 0;
}

.hero-card-header p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 600;
}

.tag.neutral {
  background: var(--slate-100);
  color: var(--slate-600);
}

.tag.soon {
  background: #fff7ed;
  color: #c2410c;
}

.tag.best {
  background: #ecfdf5;
  color: #047857;
}

.ranking {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.ranking li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--slate-100);
}

.ranking li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ranking span {
  display: block;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.score {
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 12px;
  padding: 0.35rem 0.65rem;
  min-width: 3rem;
  text-align: center;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.text-link {
  color: var(--blue-700);
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stats-grid .card {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--slate-950);
}

.sources {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--slate-500);
}

.split {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  color: var(--slate-600);
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-600);
  font-weight: 700;
}

.emphasis {
  background: var(--slate-50);
  border-color: var(--slate-200);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill-group span {
  padding: 0.4rem 0.8rem;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  font-size: 0.85rem;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  counter-reset: steps;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-content {
  flex: 1;
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1.2rem;
  top: 1.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 0.5rem;
}

.steps p {
  color: var(--slate-600);
}

.demo-card {
  display: grid;
  gap: 1.5rem;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.demo-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--slate-500);
}

.demo-sub {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.demo-ranking {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: 16px;
}

.demo-ranking strong {
  display: block;
}

.demo-ranking span {
  color: var(--blue-700);
  font-weight: 600;
}

.demo-ranking p {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.demo-details h4 {
  margin-bottom: 0.75rem;
}

.demo-details ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--slate-600);
}

.demo-radar {
  margin-top: 1.5rem;
}

.demo-radar h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.radar-chart {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  font-family: inherit;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.plan .plan-list {
  flex: 1;
}

.plan .button {
  padding: 0.6rem 1.4rem;
}

.plan-pro {
  border-color: var(--blue-100);
}

.plan-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-950);
  margin-top: 0.5rem;
}

.plan-sub {
  color: var(--slate-600);
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--slate-600);
}

.plan-list li {
  position: relative;
  padding-left: 1.4rem;
}

.plan-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-600);
}

.plan-note {
  margin-top: 1.5rem;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  margin-top: 0.75rem;
  color: var(--slate-600);
}

.cta {
  padding: 5rem 0;
}

.cta-card {
  background: var(--slate-950);
  color: var(--white);
  border-radius: 28px;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta-card p {
  color: rgba(248, 250, 252, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid a {
  color: var(--slate-600);
  display: block;
  margin-top: 0.35rem;
}

.footer-title {
  font-weight: 600;
  color: var(--slate-700);
}

.footer-note {
  text-align: center;
  color: var(--slate-500);
  font-size: 0.85rem;
}

.animate {
  animation: fade-up 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.25s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Hamburger Menu (Mobile)
   ============================================ */

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--slate-700);
}

.hamburger-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================
   Social Proof Bar
   ============================================ */

.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-500);
}

.social-proof-bar svg {
  width: 1rem;
  height: 1rem;
  color: var(--blue-600);
  flex-shrink: 0;
}

/* ============================================
   CTA Micro Text
   ============================================ */

.cta-micro {
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* ============================================
   Screenshot Images
   ============================================ */

.demo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.demo-gallery-2 {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}

.demo-screenshot {
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

.demo-screenshot:hover {
  transform: scale(1.03);
}

/* ============================================
   Demo Feature Zigzag Layout
   ============================================ */

.demo-feature {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.demo-feature:last-child {
  margin-bottom: 0;
}

.demo-feature-reverse {
  flex-direction: row-reverse;
}

.demo-feature-img {
  flex: 0 0 55%;
  max-width: 55%;
}

.demo-feature-text {
  flex: 1;
}

.demo-feature-text h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--slate-950);
}

.demo-feature-text .checklist {
  gap: 0.75rem;
}

/* ============================================
   Demo Feature - Clickable Images
   ============================================ */

.demo-feature-img {
  position: relative;
  cursor: pointer;
}

.demo-feature-img::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' y1='3' x2='14' y2='10'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.demo-feature-img:hover::after {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   Responsive: Tablet & Mobile
   ============================================ */

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    position: relative;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--slate-200);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a.button {
    align-self: flex-start;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-card {
    padding: 1.25rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .demo-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .demo-feature,
  .demo-feature-reverse {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .demo-feature-img {
    flex: none;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1,
  h1 {
    font-size: 2rem;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-meta {
    gap: 0.5rem;
  }

  .hero-meta span {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .steps li {
    padding: 1.25rem 1.25rem 1.25rem 3.75rem;
  }

  .pricing-grid {
    gap: 1.25rem;
  }

  .cta-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate {
    animation: none;
  }

  .button {
    transition: none;
  }
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Rating Stars */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  font-size: 1.5rem;
  line-height: 1;
}

.star-full {
  color: #f59e0b; /* Amber-500 */
}

.star-half {
  position: relative;
  color: #e2e8f0; /* Slate-200 - estrella vacía */
}

.star-half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f59e0b; /* Mitad llena */
}

.star-empty {
  color: #e2e8f0; /* Slate-200 */
}

/* Quote */
.testimonial-quote {
  flex: 1;
  margin: 0;
}

.testimonial-quote p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-700);
  font-style: italic;
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--slate-100);
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 1.3rem;
  height: 1.3rem;
}

.testimonial-avatar.avatar-f {
  background: #fce7f3;
  color: #db2777;
}

.testimonial-avatar.avatar-m {
  background: #dbeafe;
  color: #2563eb;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-author-info strong {
  font-size: 0.85rem;
  color: var(--slate-900);
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* SEO-friendly hidden content */
.testimonials-seo {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsive */
@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: none;
  }
}

/* ============================================
   Scroll to Top Button
   ============================================ */

.scroll-to-top-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background-color: var(--blue-600);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.scroll-to-top-button:hover {
  background-color: var(--blue-700);
  transform: scale(1.05);
}

.scroll-to-top-button:active {
  transform: scale(0.95);
}

.scroll-to-top-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-top-button {
    transition: none;
  }
}
