* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0f;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  perspective: 1000px;
}

/* Animation Classes - Now handled by GSAP ScrollTrigger */
.reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
}



.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}

/* Animated gradient background */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(168, 85, 247, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 70%
    );
  z-index: -1;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-icon-brand {
  background: white !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(0,0,0,0.05);
  padding: 0;
  overflow: hidden;
  border-radius: 50% !important;
  aspect-ratio: 1/1;
}

.logo-icon-brand img {
  filter: none !important;
  padding: 6px;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* Cache bust: v1.0.1 */

.nav-cta {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 5% 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: #a5b4fc;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.lead-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
}

.lead-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.lead-form input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.lead-form input::placeholder {
  color: #64748b;
}

@media (max-width: 600px) {
  .lead-form {
    flex-direction: column;
    width: 100%;
  }
  .lead-form input,
  .lead-form button {
    width: 100%;
  }
}

/* Steps Section */
.steps-section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps-header p {
  color: #94a3b8;
  font-size: 1.125rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.step-card:nth-child(even) {
  direction: rtl;
}

.step-card:nth-child(even) > * {
  direction: ltr;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.step-content p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* Step UI Mockups */
.step-visual {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Volume Selector UI */
.volume-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.volume-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.volume-option.selected {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.volume-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.volume-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.volume-info span {
  color: #94a3b8;
  font-size: 0.875rem;
}

.volume-price {
  font-weight: 700;
  color: #a5b4fc;
}

.volume-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.volume-option.selected .volume-check {
  background: #6366f1;
  border-color: #6366f1;
}

/* Customization UI */
.customization-ui {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.color-picker {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.color-picker label {
  font-weight: 500;
  font-size: 0.875rem;
  color: #94a3b8;
}

.color-options {
  display: flex;
  gap: 0.75rem;
}

.color-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
  border: 3px solid transparent;
}

.color-dot:hover {
  transform: scale(1.1);
}

.color-dot.selected {
  border-color: white;
}

.logo-upload {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.logo-upload:hover {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.05);
}

.logo-upload-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.logo-upload p {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Ready UI */
.ready-ui {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  animation: bounce 0.6s ease-out;
}

@keyframes bounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.ready-ui h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ready-ui p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.ready-url {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ready-url span {
  color: #a5b4fc;
  font-family: monospace;
  font-size: 0.875rem;
}

.copy-btn {
  background: #6366f1;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: #4f46e5;
}

/* Features Section */
.features-section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  text-align: center;
}

.cta-box {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(168, 85, 247, 0.15)
  );
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 32px;
  padding: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #94a3b8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  padding: 5rem 5% 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  color: #64748b;
  line-height: 1.6;
}

.footer-col h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9375rem;
}

.footer-col ul li a:hover {
  color: #6366f1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #475569;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card:nth-child(even) {
    direction: ltr;
  }

  .hero {
    padding: 4rem 5% 3rem;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* Integrations Map Styles */
.integrations-section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.integrations-map {
  display: grid;
  grid-template-columns: 1fr 100px 1.2fr;
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
  align-items: center;
}

.int-cards-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.int-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  max-width: 450px;
}

.int-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.int-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}
.icon-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.icon-yellow {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

.int-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.int-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Center Icons Column */
.int-icons-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.int-icons-col::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: dashed 1px rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.social-node {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.3s;
  padding: 8px;
}

.social-node:hover {
  transform: scale(1.1);
}

/* Right UI Previews Column */
.int-ui-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.ui-mockup {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  color: #1e293b;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.15));
}

.widget-mockup {
  border: 1px solid #e2e8f0;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.widget-header strong {
  font-size: 1.25rem;
  font-weight: 700;
}

.widget-icon {
  width: 36px;
  height: 36px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-search {
  background: #f1f5f9;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.widget-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.widget-tags span {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
}

.widget-form {
  background: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-form input {
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.875rem;
  outline: none;
}

.widget-form button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.theme-mockup {
  max-width: 300px;
  margin-left: auto;
}

.theme-colors {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.tc {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.mobile-mockup {
  background: #e5ddd5; /* WA background color */
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 2rem;
  position: relative;
  overflow: hidden;
}

.mobile-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M20 20c0 11.046-8.954 20-20 20S-20 31.046-20 20 0 0 20 0s20 8.954 20 20z" fill="rgba(255,255,255,0.05)"/></svg>');
  z-index: 0;
  opacity: 0.5;
}

.chat-bubble {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  max-width: 80%;
  position: relative;
  z-index: 1;
}

.chat-bubble.left {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.chat-bubble.right {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
}

/* SVG Background Lines */
.bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.animated-path {
  stroke-width: 3;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 4s forwards infinite alternate ease-in-out;
}

.stroke-blue {
  stroke: rgba(59, 130, 246, 0.4);
}
.stroke-green {
  stroke: rgba(34, 197, 94, 0.4);
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1024px) {
  .integrations-map {
    grid-template-columns: 1fr;
  }
  .int-icons-col,
  .bg-lines {
    display: none;
  }
  .int-card {
    max-width: 100%;
  }
  .theme-mockup,
  .mobile-mockup {
    margin-left: 0;
  }
}


/* Enhanced SVG Flow Animations */
.animated-path {
  stroke-width: 2.5;
  stroke-dasharray: 8, 12; /* Creates dash pattern */
  stroke-dashoffset: 1000;
  animation: flowLine 40s linear infinite;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

@keyframes flowLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Floating Animation for Nodes */
.social-node {
  animation: floatNode 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-node:nth-child(2n) {
  animation-delay: 1.5s;
}

@keyframes floatNode {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse for Chatwoot Node */
.node-chatwoot {
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

/* Hover effects for cards */
.int-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.int-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px) scale(1.02);
}

.stroke-blue { stroke: #3b82f6; }
.stroke-green { stroke: #10b981; }
.stroke-yellow { stroke: #f59e0b; }
.stroke-purple { stroke: #8b5cf6; }

.animated-path {
  filter: drop-shadow(0 0 12px currentColor);
  opacity: 0.6;
}

.whatsapp-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.whatsapp-btn {
  background: linear-gradient(135.08deg, #25D366 0%, #128C7E 100%) !important;
  color: white !important;
  padding: 1rem 2.5rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
  border: none !important;
  cursor: pointer !important;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5) !important;
  filter: brightness(1.1);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}
