.xkit-feature-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 32px;
}

.xkit-feature-box {
  background: var(--card-bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}
.xkit-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent);
}

.xkit-feature-box__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.xkit-feature-box__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--contrast);
}

.xkit-feature-box__description {
  font-size: 0.95rem;
  color: var(--contrast-3);
  margin: 0;
}

@media (max-width: 1024px) {
  .xkit-feature-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .xkit-feature-box-grid {
    grid-template-columns: 1fr;
  }
}
p {
  color: var(--text-secondary);
  font-size: 1.225rem;
  max-width: 600px;
}

.bird-container {
  position: fixed;
  top: 100px;
  left: -100px;
  z-index: 999;
  pointer-events: none;
  will-change: transform;
}

.bird-image {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transform-origin: center center;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.gradient-sphere {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(86, 194, 255, 0.15), rgba(136, 29, 236, 0.05) 70%);
  top: -200px;
  right: -200px;
  animation: floatSphere 20s ease-in-out infinite;
}

.gradient-sphere-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, rgba(255, 99, 99, 0.1), rgba(89, 212, 153, 0.03) 70%);
  bottom: -200px;
  left: -100px;
  animation: floatSphere2 18s ease-in-out infinite reverse;
}

@keyframes floatSphere {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, 20px) scale(1.05);
  }
  66% {
    transform: translate(20px, -30px) scale(0.95);
  }
}
@keyframes floatSphere2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 50%;
  opacity: 0.03;
  filter: blur(40px);
  animation: shapeFloat 15s ease-in-out infinite;
}
.shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
  animation-delay: -5s;
}
.shape-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  animation-delay: -10s;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, 5%) scale(1.1);
  }
  50% {
    transform: translate(-5%, 10%) scale(0.9);
  }
  75% {
    transform: translate(10%, -5%) scale(1.05);
  }
}
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  position: relative;
  z-index: 3;
}
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Window UI */
.window-ui {
  width: 100%;
  max-width: 500px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  animation: windowFloat 6s ease-in-out infinite;
}

@keyframes windowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.window-header {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-medium);
}
.window-dots span:first-child {
  background: var(--accent-red);
}
.window-dots span:nth-child(2) {
  background: var(--accent-yellow);
}
.window-dots span:last-child {
  background: var(--accent-green);
}

.window-title {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  font-weight: 500;
}

.window-body {
  padding: 24px;
}

.suggestion-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}
.suggestion-row:focus-within {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(86, 194, 255, 0.1);
}

.suggestion-icon {
  color: var(--text-tertiary);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.suggestion-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.suggestion-input::placeholder {
  color: var(--text-tertiary);
  opacity: 0.8;
}
.suggestion-input:focus {
  outline: none;
}
.suggestion-input:-webkit-autofill, .suggestion-input:-webkit-autofill:hover, .suggestion-input:-webkit-autofill:focus, .suggestion-input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--text-primary);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.result-item.active {
  background: var(--bg-secondary);
  border-left: 3px solid var(--accent-blue);
}

.result-category {
  color: var(--text-tertiary);
  min-width: 70px;
  font-size: 0.85rem;
}

.result-name {
  font-weight: 500;
}

.result-count {
  color: var(--text-tertiary);
  font-weight: 400;
}

/* Problem Section */
.problem-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.problem-conclusion {
  text-align: center;
  margin-top: 40px;
}

.conclusion-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* Solution Section */
.solution-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

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

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-description {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.progressive-statements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 16px;
  position: relative;
}

.progressive-item {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.7;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.progressive-item:hover {
  opacity: 1;
  transform: translateX(10px);
}
.progressive-item:hover .progressive-line {
  width: 100%;
}
.progressive-item.item-1 {
  opacity: 1;
}
.progressive-item.item-1 .progressive-line {
  width: 100%;
}
.progressive-item.item-2 {
  opacity: 0.9;
}
.progressive-item.item-2 .progressive-line {
  width: 70%;
}
.progressive-item.item-3 {
  opacity: 0.8;
}
.progressive-item.item-3 .progressive-line {
  width: 40%;
}

.progressive-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-tertiary);
  min-width: 50px;
  font-family: monospace;
}

.progressive-content {
  flex: 1;
  position: relative;
}

.progressive-badge {
  display: inline-block;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1rem;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
}

.progressive-line {
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  width: 0;
  transition: width 0.5s ease;
}

.progressive-arrow {
  display: flex;
  justify-content: flex-start;
  margin-left: 70px;
  margin-top: 8px;
  color: var(--accent-blue);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.solution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 40px 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Who Section */
.who-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
}

.who-card {
  background: var(--card-bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-green);
}
.who-card i {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 20px;
}
.who-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.who-card p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin: 0;
}

.who-footer {
  text-align: center;
  margin-top: 32px;
}
.who-footer p {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* Different Section */
.different-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 48px 0;
}

.different-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 40px 32px;
  transition: all 0.2s ease;
}
.different-card-positive {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 1px var(--accent-green), var(--card-shadow);
}

.different-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.different-header i {
  font-size: 1.8rem;
}
.different-header i.fa-xmark {
  color: var(--accent-red);
}
.different-header i.fa-check {
  color: var(--accent-green);
}
.different-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.different-list {
  list-style: none;
  padding: 0;
}
.different-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.1rem;
}
.different-list li:last-child {
  border-bottom: none;
}
.different-list i {
  font-size: 1.25rem;
}
.different-list i.fa-circle-check {
  color: var(--accent-green);
}
.different-list-negative i {
  color: var(--accent-red);
}

.different-footer {
  text-align: center;
  margin-top: 32px;
}
.different-footer p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background: var(--bg-primary);
}

.cta-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card-bg-alt) 100%);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 64px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}
.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-card p {
  font-size: 1.25rem;
  margin: 0 auto 32px;
  max-width: 600px;
}

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

/* Features Section */
.features-section {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header p {
  margin: 20px auto 0;
  color: var(--text-secondary);
}

.features-slider-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.features-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-tab {
  padding: 8px 16px;
  border: 1px solid var(--border-medium);
  background: transparent;
  border-radius: 30px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.95rem;
}
.feature-tab:hover {
  background: var(--bg-primary);
  border-color: var(--text-tertiary);
  color: var(--text-secondary);
}
.feature-tab.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.features-slider-container {
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-primary);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.features-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.feature-slide {
  flex: 0 0 100%;
  padding: 0;
}

.feature-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.feature-image-side {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.feature-image-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-overlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Conversion Image Animations */
.conversion-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 200px;
  width: 100%;
  padding: 20px 0;
}

.conversion-bar {
  width: 50px;
  border-radius: 12px 12px 4px 4px;
  transition: height 0.3s ease;
  animation: barPulse 3s ease-in-out infinite;
}

.bar-1 {
  animation-delay: 0s;
}

.bar-2 {
  animation-delay: 0.5s;
}

.bar-3 {
  animation-delay: 1s;
}

.bar-4 {
  animation-delay: 1.5s;
}

.bar-5 {
  animation-delay: 2s;
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}
/* Performance Image Animations */
.performance-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.speed-meter {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 8px solid var(--border-medium);
  position: relative;
}

.speed-needle {
  width: 4px;
  height: 60px;
  background: var(--accent-blue);
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transition: transform 0.5s ease;
  animation: speedNeedleSweep 4s ease-in-out infinite;
}

@keyframes speedNeedleSweep {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(20deg);
  }
}
.speed-stats {
  text-align: center;
}

.speed-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
  animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% {
    transform: scale(1);
    color: var(--accent-green);
  }
  50% {
    transform: scale(1.1);
    color: var(--accent-blue);
  }
}
.speed-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

/* Multi-level Image Animations */
.tree-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px;
}

.tree-node {
  padding: 8px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  margin: 4px 0;
  font-size: 0.9rem;
  box-shadow: var(--card-shadow);
  z-index: 2;
  animation: nodeAppear 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(10px);
}
.tree-node.root {
  background: var(--accent-purple);
  color: white;
  border-color: var(--accent-purple);
}
.tree-node.child {
  margin-left: 40px;
}
.tree-node.grandchild {
  margin-left: 80px;
  font-size: 0.8rem;
}

.node-1 {
  animation-delay: 0.2s;
}

.node-2 {
  animation-delay: 0.4s;
}

.node-3 {
  animation-delay: 0.6s;
}

.node-4 {
  animation-delay: 0.8s;
}

@keyframes nodeAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tree-connector {
  position: absolute;
  width: 2px;
  height: 140px;
  background: var(--border-strong);
  top: 58px;
  left: 50%;
  z-index: 1;
  animation: connectorPulse 3s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05);
  }
}
/* UX Image Animations */
.ux-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.ux-chip-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.demo-chip {
  padding: 6px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 0.9rem;
  animation: chipFloat 3s ease-in-out infinite;
}
.demo-chip.active {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.chip-animate-1 {
  animation-delay: 0s;
}

.chip-animate-2 {
  animation-delay: 1s;
}

@keyframes chipFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.ux-swatches {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.demo-swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 1px var(--border-medium);
  animation: swatchPulse 3s ease-in-out infinite;
}

.swatch-1 {
  animation-delay: 0s;
}

.swatch-2 {
  animation-delay: 0.7s;
}

.swatch-3 {
  animation-delay: 1.4s;
}

@keyframes swatchPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.demo-slider {
  width: 100%;
  height: 6px;
  background: var(--border-medium);
  border-radius: 10px;
  position: relative;
  animation: sliderMove 4s ease-in-out infinite;
}
.demo-slider::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--text-primary);
  border-radius: 50%;
  top: -5px;
  left: 40%;
  animation: sliderThumb 4s ease-in-out infinite;
}

@keyframes sliderMove {
  0%, 100% {
    background: var(--border-medium);
  }
  50% {
    background: var(--accent-blue);
  }
}
@keyframes sliderThumb {
  0%, 100% {
    left: 10%;
    background: var(--text-primary);
  }
  50% {
    left: 80%;
    background: var(--accent-blue);
  }
}
/* Insight Image Animations */
.insight-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.insight-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  height: 150px;
  width: 100%;
  padding: 10px;
}

.chart-bar {
  width: 40px;
  border-radius: 8px 8px 0 0;
  transition: height 0.3s ease;
  animation: chartBarPulse 3s ease-in-out infinite;
}

.chart-bar-1 {
  animation-delay: 0s;
}

.chart-bar-2 {
  animation-delay: 0.5s;
  animation-name: chartBarPulse2;
}

.chart-bar-3 {
  animation-delay: 1s;
  animation-name: chartBarPulse3;
}

.chart-bar-4 {
  animation-delay: 1.5s;
  animation-name: chartBarPulse4;
}

@keyframes chartBarPulse {
  0%, 100% {
    height: 80px;
  }
  25% {
    height: 100px;
  }
  50% {
    height: 120px;
  }
  75% {
    height: 90px;
  }
}
@keyframes chartBarPulse2 {
  0%, 100% {
    height: 120px;
  }
  25% {
    height: 140px;
  }
  50% {
    height: 160px;
  }
  75% {
    height: 130px;
  }
}
@keyframes chartBarPulse3 {
  0%, 100% {
    height: 60px;
  }
  25% {
    height: 80px;
  }
  50% {
    height: 100px;
  }
  75% {
    height: 70px;
  }
}
@keyframes chartBarPulse4 {
  0%, 100% {
    height: 100px;
  }
  25% {
    height: 120px;
  }
  50% {
    height: 80px;
  }
  75% {
    height: 110px;
  }
}
.chart-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 10px;
}

.feature-text-side {
  padding: 40px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
}

.feature-card.split-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
}
.feature-card.split-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.feature-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.feature-card h3 {
  margin: 0;
  font-size: 1.8rem;
}
.feature-card p {
  font-size: 1rem;
  margin-bottom: 24px;
}

.feature-metric {
  margin-top: 20px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: 12px;
  color: var(--accent-green);
  font-weight: 500;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-medium);
  line-height: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed var(--border-light);
}
.feature-list li:last-child {
  border-bottom: none;
}

.feature-preview {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 100px;
  padding: 20px 0;
}

.preview-bar {
  height: 60px;
  flex: 1;
  border-radius: 8px;
  background: var(--accent-blue);
  opacity: 0.7;
}

.animated-bar {
  animation: barWidthPulse 3s ease-in-out infinite;
}

@keyframes barWidthPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}
.performance-metric {
  display: flex;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 12px;
}

.component-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 12px;
}

.chip {
  padding: 6px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 0.9rem;
}
.chip-active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 1px var(--border-medium);
}

.range-slider-sim {
  width: 120px;
  height: 6px;
  background: var(--border-medium);
  border-radius: 10px;
  position: relative;
}
.range-slider-sim::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--text-primary);
  border-radius: 50%;
  top: -5px;
  left: 30px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
}
.slider-control:hover {
  background: var(--bg-secondary);
  border-color: var(--text-tertiary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all 0.15s ease;
}
.dot.active {
  background: var(--text-primary);
  width: 20px;
  border-radius: 10px;
}

/* Pricing Section */
.pricing-section {
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: self-start;
  gap: 24px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.2s ease;
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary), var(--card-shadow);
}
.pricing-card h3 {
  font-size: 1.8rem;
  margin-top: 10px;
}
.pricing-card .feature-list {
  margin: 20px 0;
}
.pricing-card .feature-list li {
  border-bottom: none;
  padding: 6px 0;
}
.pricing-card .feature-list i {
  color: var(--accent-green);
}

.pricing-card .xkit-label--badge {
  position: absolute;
  top: -12px;
  left: 32px;
}

.card-description {
  color: var(--text-secondary);
  font-size: 1rem;
  min-height: 50px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-tertiary);
  vertical-align: super;
}

.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.price-strike {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.price-meta {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin: 0;
  max-width: none;
}
.price-meta strong {
  color: var(--text-primary);
  font-weight: 600;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  background: rgba(89, 212, 153, 0.12);
  color: var(--accent-green);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.price-pill i {
  font-size: 0.85rem;
}

/* Social Proof */
.social-proof {
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-text {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.avatar-cloud {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.15s ease;
}
.avatar-initials:hover {
  border-color: var(--accent-blue);
  transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-split-layout {
    grid-template-columns: 1fr;
  }
  .feature-image-side {
    min-height: 300px;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }
  .hero-content {
    align-items: center;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    text-align: center;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .solution-grid,
  .who-grid,
  .different-grid {
    grid-template-columns: 1fr;
  }
  .solution-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .different-card {
    padding: 30px 24px;
  }
  .cta-card {
    padding: 40px 24px;
  }
  .cta-card h2 {
    font-size: 1.8rem;
  }
  .features-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-tab {
    text-align: center;
  }
  .feature-slide {
    padding: 0;
  }
  .feature-card.split-card .card-header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .feature-card h3 {
    font-size: 1.5rem;
  }
  .feature-text-side {
    padding: 30px;
  }
  .feature-image-side {
    padding: 30px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .progressive-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .progressive-arrow {
    margin-left: 0;
    justify-content: center;
  }
  .bird-container {
    top: 80px;
  }
  .bird-image {
    width: 30px;
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-slide,
.xkit-feature-box,
.solution-card,
.who-card,
.different-card {
  animation: fadeIn 0.4s ease-out;
}

@media screen and (max-height: 858px) {
  .hero-subtitle {
    display: none;
  }
}
@media screen and (max-height: 578px) {
  .hero-visual {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-visual {
    display: none;
  }
}
/* CWV Optimization */
.problem-section,
.solution-section,
.who-section,
.different-section,
.cta-section,
.features-section,
.pricing-section,
.social-proof {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

/*# sourceMappingURL=homepage.css.map */
