.wl-homepage-active .wl-site-header,
.wl-homepage-active .wl-site-footer {
  display: none !important;
}

.wl-homepage-active .wl-main.wl-wrap {
  max-width: 100% !important;
  padding: 0 !important;
}

.kc-homepage {
  --kc-bg: #0a0a0a;
  --kc-surface: #1a1a1a;
  --kc-surface-alt: #232323;
  --kc-text: #ffffff;
  --kc-muted: #a0a0a0;
  --kc-muted-alt: #787878;
  --kc-accent: #be9d57;
  --kc-accent-2: #855c2e;
  --kc-accent-glow: rgba(190, 157, 87, 0.25);
  --kc-success: #25d366;
  --kc-border: #2a2a2a;
  --kc-border-alt: #3a3a3a;
  --kc-radius: 10px;
  --kc-radius-lg: 14px;
  --kc-radius-xl: 20px;
  --kc-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  --kc-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
  --kc-shadow-accent: 0 8px 32px rgba(190, 157, 87, 0.15);
  --kc-font-xs: 0.75rem;
  --kc-font-sm: 0.875rem;
  --kc-font-base: 1rem;
  --kc-font-lg: 1.125rem;
  --kc-font-xl: 1.25rem;
  --kc-font-2xl: 1.5rem;
  --kc-font-3xl: 2rem;
  --kc-font-4xl: 2.5rem;
  --kc-transition: 0.25s ease;
  --kc-transition-slow: 0.4s ease;
  color: var(--kc-text);
  background: var(--kc-bg);
  font-family: Manrope, "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.kc-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.kc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--kc-border);
}

.kc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.kc-logo {
  color: #fff;
  text-decoration: none;
  font-size: var(--kc-font-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity var(--kc-transition);
}

.kc-logo:hover {
  opacity: 0.85;
}

.kc-logo:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.kc-mobile-toggle {
  display: none;
  border: 1px solid var(--kc-border-alt);
  background: var(--kc-surface);
  color: #fff;
  border-radius: var(--kc-radius);
  padding: 8px 12px;
  cursor: pointer;
  font-size: var(--kc-font-lg);
  transition: background var(--kc-transition), border-color var(--kc-transition);
}

.kc-mobile-toggle:hover {
  background: var(--kc-surface-alt);
  border-color: var(--kc-accent);
}

.kc-mobile-toggle:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 2px;
}

.kc-nav {
  display: flex;
  gap: 32px;
}

.kc-nav a {
  color: var(--kc-muted);
  text-decoration: none;
  font-size: var(--kc-font-sm);
  font-weight: 500;
  transition: color var(--kc-transition);
  position: relative;
}

.kc-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kc-accent);
  transition: width var(--kc-transition);
}

.kc-nav a:hover {
  color: #fff;
}

.kc-nav a:hover::after {
  width: 100%;
}

.kc-nav a:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.kc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kc-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--kc-bg);
  border-radius: var(--kc-radius);
  padding: 10px 18px;
  font-weight: 600;
  font-size: var(--kc-font-sm);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: transform var(--kc-transition), box-shadow var(--kc-transition);
}

.kc-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.kc-login-btn:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 3px;
}

.kc-lang {
  line-height: 1;
  background: var(--kc-surface);
  color: #fff;
  border: 1px solid var(--kc-border-alt);
  border-radius: var(--kc-radius);
  padding: 10px 14px;
  font-size: var(--kc-font-sm);
  cursor: pointer;
  transition: border-color var(--kc-transition);
}

.kc-lang:hover {
  border-color: var(--kc-accent);
}

.kc-lang:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 2px;
}

.kc-hero,
.kc-section {
  padding: 100px 0;
}

.kc-hero {
  background: linear-gradient(180deg, var(--kc-surface) 0%, var(--kc-bg) 100%);
  position: relative;
  overflow: hidden;
}

.kc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--kc-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.kc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.kc-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.kc-hero-lead {
  font-size: var(--kc-font-lg);
  color: var(--kc-muted);
  margin: 0 0 12px;
  line-height: 1.7;
}

.kc-hero-sub {
  font-size: var(--kc-font-base);
  color: var(--kc-muted-alt);
  margin: 0 0 28px;
}

.kc-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--kc-accent), var(--kc-accent-2));
  color: var(--kc-bg);
  padding: 14px 32px;
  font-weight: 600;
  font-size: var(--kc-font-base);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--kc-transition), box-shadow var(--kc-transition);
}

.kc-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--kc-shadow-accent);
}

.kc-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.kc-cta--outline {
  background: transparent;
  border: 2px solid var(--kc-border-alt);
  color: var(--kc-text);
}

.kc-cta--outline:hover {
  border-color: var(--kc-accent);
  box-shadow: none;
}

.kc-hero video,
.kc-video-wrap video {
  width: 100%;
  border-radius: var(--kc-radius-xl);
  box-shadow: var(--kc-shadow-lg);
}

.kc-hero-media {
  position: relative;
}

.kc-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -0.02em;
}

.kc-section-subtitle {
  color: var(--kc-muted);
  font-size: var(--kc-font-lg);
  text-align: center;
  margin: 0 0 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.kc-demo-grid,
.kc-pricing-grid,
.kc-feature-grid,
.kc-platform-grid,
.kc-benefits-grid,
.kc-steps-grid {
  display: grid;
  gap: 24px;
}

.kc-demo-grid,
.kc-pricing-grid,
.kc-feature-grid,
.kc-platform-grid,
.kc-benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kc-steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kc-steps-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kc-demo-card,
.kc-pricing-card,
.kc-feature-card,
.kc-platform-card,
.kc-benefits-grid article,
.kc-steps-grid article,
.kc-faq details,
.kc-modal-card {
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius-lg);
  padding: 24px;
  transition: transform var(--kc-transition), border-color var(--kc-transition), box-shadow var(--kc-transition);
}

.kc-demo-card h3,
.kc-feature-card h3,
.kc-platform-card h3,
.kc-benefits-grid article h3 {
  font-size: var(--kc-font-lg);
  font-weight: 600;
  margin: 0 0 8px;
}

.kc-demo-card p,
.kc-feature-card p,
.kc-platform-card p,
.kc-benefits-grid article p,
.kc-demo-card p,
.kc-conversion p,
.kc-faq p {
  color: var(--kc-muted);
  font-size: var(--kc-font-sm);
  margin: 0;
  line-height: 1.6;
}

.kc-demo-card:hover,
.kc-pricing-card:hover,
.kc-feature-card:hover,
.kc-platform-card:hover,
.kc-benefits-grid article:hover {
  transform: translateY(-6px);
  border-color: var(--kc-accent);
  box-shadow: var(--kc-shadow-accent);
}

.kc-demo-card--highlight {
  border-color: var(--kc-accent);
  box-shadow: 0 0 0 1px var(--kc-accent-glow) inset, var(--kc-shadow-accent);
}

.kc-demo-card--highlight .kc-feature-icon svg {
  fill: var(--kc-accent);
}

.kc-demo-static {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--kc-surface-alt);
  border-radius: var(--kc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.kc-demo-static svg {
  width: 48px;
  height: 48px;
  fill: var(--kc-accent);
  opacity: 0.6;
}

.kc-video-wrap {
  position: relative;
  margin-bottom: 18px;
}

.kc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: rgba(190, 157, 87, 0.95);
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--kc-transition), box-shadow var(--kc-transition);
}

.kc-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(190, 157, 87, 0.4);
}

.kc-play-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.kc-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--kc-bg);
  margin-left: 3px;
}

.kc-pricing-card img {
  width: 100%;
  border-radius: var(--kc-radius);
}

.kc-flip-card {
  position: relative;
  max-width: 400px;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  perspective: 1000px;
  margin: 0 auto 18px;
}

.kc-flip-front,
.kc-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transition: transform 0.6s;
  border-radius: var(--kc-radius);
  overflow: hidden;
}

.kc-flip-back {
  transform: rotateY(180deg);
}

.kc-flip-card:hover .kc-flip-back {
  transform: rotateY(0);
}

.kc-flip-card:hover .kc-flip-front {
  transform: rotateY(-180deg);
}

.kc-price del {
  color: var(--kc-muted-alt);
  margin-left: 8px;
}

.kc-feature-card,
.kc-platform-card,
.kc-benefit-card {
  text-align: center;
}

.kc-feature-icon,
.kc-platform-icon,
.kc-benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(190, 157, 87, 0.1);
  border-radius: 50%;
  transition: background var(--kc-transition), transform var(--kc-transition);
}

.kc-feature-icon svg,
.kc-platform-icon svg,
.kc-benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--kc-accent);
  transition: transform var(--kc-transition), filter var(--kc-transition);
}

.kc-feature-card:hover .kc-feature-icon,
.kc-platform-card:hover .kc-platform-icon,
.kc-benefit-card:hover .kc-benefit-icon {
  background: rgba(190, 157, 87, 0.15);
  transform: scale(1.05);
}

.kc-feature-card:hover .kc-feature-icon svg,
.kc-platform-card:hover .kc-platform-icon svg,
.kc-benefit-card:hover .kc-benefit-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(190, 157, 87, 0.5));
}

.kc-feature-card--highlight {
  border-color: var(--kc-success);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.25) inset;
}

.kc-feature-card--highlight .kc-feature-icon svg {
  fill: var(--kc-success);
}

.kc-profile-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.kc-profile-overview {
  position: sticky;
  top: 92px;
}

.kc-profile-overview h2 {
  margin: 0 0 16px;
  text-align: left;
}

.kc-profile-overview .kc-section-subtitle {
  text-align: left;
  margin: 0;
}

.kc-profile-groups {
  display: grid;
  gap: 18px;
}

.kc-profile-group {
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius-lg);
  padding: 20px;
}

.kc-profile-group h3 {
  margin: 0 0 14px;
  font-size: var(--kc-font-lg);
  font-weight: 700;
}

.kc-profile-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.kc-profile-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--kc-surface-alt);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  transition: transform var(--kc-transition), border-color var(--kc-transition), box-shadow var(--kc-transition);
  animation: kcFadeUp 0.45s ease both;
}

.kc-profile-item:hover {
  transform: translateY(-4px);
  border-color: var(--kc-accent);
  box-shadow: var(--kc-shadow-accent);
}

.kc-profile-item .kc-feature-icon {
  margin: 0;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.kc-profile-item .kc-feature-icon svg {
  width: 24px;
  height: 24px;
}

.kc-profile-item-content h4 {
  margin: 0 0 6px;
  font-size: var(--kc-font-base);
  font-weight: 700;
}

.kc-profile-item-content p {
  margin: 0;
  color: var(--kc-muted);
  font-size: var(--kc-font-sm);
  line-height: 1.5;
}

.kc-profile-item--highlight {
  border-color: var(--kc-success);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.25) inset;
}

.kc-profile-item--highlight .kc-feature-icon svg {
  fill: var(--kc-success);
}

.kc-profile-group-grid .kc-profile-item:nth-child(2) {
  animation-delay: 0.05s;
}

.kc-profile-group-grid .kc-profile-item:nth-child(3) {
  animation-delay: 0.1s;
}

.kc-profile-group-grid .kc-profile-item:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes kcFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kc-steps-grid article {
  text-align: center;
  padding: 32px 24px;
}

.kc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--kc-accent), var(--kc-accent-2));
  color: var(--kc-bg);
  font-size: var(--kc-font-xl);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.kc-step--ai .kc-step-num {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.kc-steps-grid article h3 {
  font-size: var(--kc-font-lg);
  font-weight: 600;
  margin: 0 0 12px;
}

.kc-steps-grid article p {
  color: var(--kc-muted);
  font-size: var(--kc-font-sm);
  margin: 0;
  line-height: 1.6;
}

.kc-ai-section {
  background: linear-gradient(180deg, var(--kc-bg) 0%, var(--kc-surface) 50%, var(--kc-bg) 100%);
  position: relative;
}

.kc-ai-header {
  text-align: center;
  margin-bottom: 48px;
}

.kc-ai-header h2 {
  margin-bottom: 16px;
}

.kc-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.kc-ai-chat-mockup {
  background: var(--kc-surface-alt);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius-xl);
  overflow: hidden;
  box-shadow: var(--kc-shadow-lg);
}

.kc-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--kc-surface);
  border-bottom: 1px solid var(--kc-border);
}

.kc-chat-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kc-chat-avatar svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.kc-chat-title {
  font-weight: 600;
  font-size: var(--kc-font-sm);
}

.kc-chat-body {
  padding: 20px;
  min-height: 320px;
}

.kc-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kc-chat-msg {
  display: flex;
  max-width: 85%;
}

.kc-chat-msg--user {
  margin-left: auto;
}

.kc-chat-msg--user .kc-chat-text {
  background: var(--kc-accent);
  color: var(--kc-bg);
  border-radius: var(--kc-radius-lg) var(--kc-radius-lg) 4px var(--kc-radius-lg);
}

.kc-chat-msg--ai {
  margin-right: auto;
}

.kc-chat-msg--ai .kc-chat-text {
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius-lg) var(--kc-radius-lg) var(--kc-radius-lg) 4px;
}

.kc-chat-text {
  padding: 12px 16px;
  font-size: var(--kc-font-sm);
  line-height: 1.5;
}

.kc-ai-features {
  padding: 8px 0;
}

.kc-ai-features h3 {
  font-size: var(--kc-font-xl);
  font-weight: 600;
  margin: 0 0 28px;
}

.kc-ai-commands {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kc-ai-commands li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kc-ai-cmd-icon {
  width: 44px;
  height: 44px;
  background: rgba(124, 58, 237, 0.12);
  border-radius: var(--kc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kc-ai-cmd-icon svg {
  width: 22px;
  height: 22px;
  fill: #7c3aed;
}

.kc-ai-cmd-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kc-ai-cmd-content strong {
  font-size: var(--kc-font-base);
  font-weight: 600;
}

.kc-ai-cmd-content span {
  font-size: var(--kc-font-sm);
  color: var(--kc-muted);
  line-height: 1.6;
}

.kc-ai-cta {
  margin-top: 8px;
}

.kc-faq-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.kc-faq details {
  padding: 20px 24px;
}

.kc-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--kc-font-base);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kc-faq summary::-webkit-details-marker {
  display: none;
}

.kc-faq summary::after {
  content: '+';
  font-size: var(--kc-font-xl);
  font-weight: 400;
  color: var(--kc-accent);
  transition: transform var(--kc-transition);
}

.kc-faq details[open] summary::after {
  transform: rotate(45deg);
}

.kc-faq summary:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.kc-faq details p {
  margin: 16px 0 0;
  font-size: var(--kc-font-sm);
  line-height: 1.7;
}

.kc-conversion {
  background: var(--kc-surface);
}

.kc-conversion .kc-section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.kc-conversion-footer {
  text-align: center;
  margin-top: 48px;
}

.kc-conversion-footer .kc-cta {
  margin-bottom: 16px;
}

.kc-conversion-footer p {
  font-size: var(--kc-font-sm);
}

.kc-footer {
  border-top: 1px solid var(--kc-border);
  padding: 32px 0;
  text-align: center;
}

.kc-footer ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.kc-footer a,
.kc-mobile-menu a {
  color: var(--kc-muted);
  text-decoration: none;
  font-size: var(--kc-font-sm);
  transition: color var(--kc-transition);
}

.kc-footer a:hover,
.kc-mobile-menu a:hover {
  color: var(--kc-accent);
}

.kc-footer a:focus-visible,
.kc-mobile-menu a:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.kc-footer p {
  color: var(--kc-muted-alt);
  font-size: var(--kc-font-xs);
}

.kc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  padding: 20px;
}

.kc-modal.is-open {
  display: flex;
}

.kc-modal-card {
  width: min(540px, 100%);
  position: relative;
  max-height: 86vh;
  overflow-y: auto;
}

.kc-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid var(--kc-border-alt);
  background: var(--kc-surface);
  color: #fff;
  border-radius: var(--kc-radius);
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--kc-transition), border-color var(--kc-transition);
}

.kc-modal-close:hover {
  background: var(--kc-surface-alt);
  border-color: var(--kc-accent);
}

.kc-modal-close:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 2px;
}

.kc-modal-product {
  margin-bottom: 20px;
  text-align: center;
}

.kc-modal-product img {
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--kc-radius-lg);
}

.kc-qty {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 4px;
}

.kc-qty button {
  border: 0;
  background: #222;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: var(--kc-font-lg);
  transition: background var(--kc-transition);
}

.kc-qty button:hover {
  background: #333;
}

.kc-qty button:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 2px;
}

.kc-qty input {
  width: 60px;
  text-align: center;
  border: 0;
  background: transparent;
  color: var(--kc-bg);
  font-size: var(--kc-font-base);
  font-weight: 600;
}

#kc-order-form {
  display: grid;
  gap: 12px;
}

#kc-order-form label {
  display: grid;
  gap: 6px;
  font-size: var(--kc-font-sm);
  font-weight: 500;
}

#kc-order-form input,
#kc-order-form textarea {
  width: 100%;
  border-radius: var(--kc-radius);
  border: 1px solid var(--kc-border-alt);
  background: var(--kc-surface);
  color: #fff;
  padding: 12px 14px;
  font-size: var(--kc-font-base);
  transition: border-color var(--kc-transition);
}

#kc-order-form input:focus,
#kc-order-form textarea:focus {
  outline: none;
  border-color: var(--kc-accent);
}

#kc-order-form input:focus-visible,
#kc-order-form textarea:focus-visible {
  outline: 2px solid var(--kc-accent);
  outline-offset: 2px;
}

.kc-submit-order {
  margin-top: 8px;
  width: 100%;
}

.kc-notice {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 1200;
  padding: 14px 18px;
  border-radius: var(--kc-radius);
  font-size: var(--kc-font-sm);
  font-weight: 500;
}

.kc-notice-success {
  background: #0d2818;
  border: 1px solid #166534;
  color: #4ade80;
}

.kc-notice-error {
  background: #2c0a0a;
  border: 1px solid #991b1b;
  color: #fca5a5;
}

.kc-mobile-menu,
.kc-mobile-overlay {
  display: none;
}

.kc-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #075e54;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--kc-font-sm);
  border-radius: 999px;
  padding: 12px 20px;
  z-index: 1200;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform var(--kc-transition), box-shadow var(--kc-transition);
}

.kc-whatsapp-float:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.kc-whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .kc-hero-grid,
  .kc-demo-grid,
  .kc-pricing-grid,
  .kc-feature-grid,
  .kc-platform-grid,
  .kc-benefits-grid,
  .kc-steps-grid,
  .kc-steps-grid--4 {
    grid-template-columns: 1fr;
  }

  .kc-ai-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kc-profile-two-col {
    grid-template-columns: 1fr;
  }

  .kc-profile-overview {
    position: static;
  }

  .kc-profile-overview h2,
  .kc-profile-overview .kc-section-subtitle {
    text-align: center;
  }

  .kc-profile-group-grid {
    grid-template-columns: 1fr;
  }

  .kc-ai-chat-mockup {
    order: 1;
  }

  .kc-ai-features {
    order: 2;
  }

  .kc-hero-media {
    order: 1;
  }

  .kc-hero-content {
    order: 2;
  }

  .kc-nav {
    display: none;
  }

  .kc-mobile-toggle {
    display: inline-flex;
  }

  .kc-header-actions {
    gap: 8px;
  }

  .kc-login-btn {
    padding: 8px 12px;
    font-size: var(--kc-font-xs);
  }

  .kc-lang {
    padding: 8px 10px;
    font-size: var(--kc-font-xs);
    min-width: 56px;
  }

  .kc-mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--kc-surface);
    z-index: 1100;
    padding: 60px 20px 20px;
    transition: left var(--kc-transition-slow);
    border-right: 1px solid var(--kc-border);
  }

  .kc-mobile-brand {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin: 0 0 16px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--kc-border);
    text-decoration: none;
  }

  .kc-mobile-brand img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
  }

  .kc-mobile-brand:hover {
    color: var(--kc-accent-strong, #d4b06a);
  }

  .kc-mobile-brand:focus-visible {
    outline: 2px solid var(--kc-accent);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .kc-mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .kc-mobile-menu nav a {
    background: var(--kc-surface-alt);
    border: 1px solid var(--kc-border);
    border-radius: var(--kc-radius);
    padding: 14px 16px;
    font-size: var(--kc-font-base);
  }

  .kc-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1050;
  }

  .kc-mobile-menu.is-open {
    left: 0;
    display: block;
  }

  .kc-mobile-overlay.is-open {
    display: block;
  }

  .kc-hero,
  .kc-section {
    padding: 64px 0;
  }

  .kc-hero-ctas {
    flex-direction: column;
  }

  .kc-hero-ctas .kc-cta {
    width: 100%;
    justify-content: center;
  }

  .kc-section-subtitle {
    margin-bottom: 32px;
  }

  .kc-chat-body {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .kc-container {
    padding: 0 16px;
  }

  .kc-header-inner {
    padding: 0 16px;
    min-height: 64px;
    gap: 10px;
  }

  .kc-login-btn {
    padding: 7px 10px;
  }

  .kc-lang {
    padding: 7px 8px;
    min-width: 52px;
  }

  .kc-hero,
  .kc-section {
    padding: 48px 0;
  }

  .kc-hero h1 {
    font-size: 1.75rem;
  }

  .kc-section h2 {
    font-size: 1.5rem;
  }

  .kc-demo-card,
  .kc-pricing-card,
  .kc-feature-card,
  .kc-platform-card,
  .kc-benefits-grid article,
  .kc-steps-grid article {
    padding: 20px;
  }

  .kc-faq details {
    padding: 16px 18px;
  }

  .kc-whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 10px 16px;
    font-size: var(--kc-font-xs);
  }
}

html[dir="rtl"] .kc-hero-content,
html[dir="rtl"] .kc-demo-card,
html[dir="rtl"] .kc-faq {
  text-align: right;
}

html[dir="rtl"] .kc-nav a::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .kc-chat-msg--user {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .kc-chat-msg--ai {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .kc-ai-commands li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .kc-profile-overview h2,
html[dir="rtl"] .kc-profile-overview .kc-section-subtitle {
  text-align: right;
}

html[dir="rtl"] .kc-conversion .kc-section-subtitle {
  text-align: center;
}

html[dir="rtl"] .kc-profile-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .kc-mobile-menu {
  left: auto;
  right: -300px;
}

html[dir="rtl"] .kc-mobile-brand img {
  margin-left: auto;
}

html[dir="rtl"] .kc-mobile-menu.is-open {
  right: 0;
}

.kc-modal-card--lg {
  max-width: 480px;
}

.kc-free-shipping {
  text-align: center;
  color: var(--kc-success);
  font-weight: 600;
  margin: 16px 0;
  padding: 10px 16px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: var(--kc-radius);
  font-size: var(--kc-font-sm);
}

.kc-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

#kc-order-form select {
  width: 100%;
  border-radius: var(--kc-radius);
  border: 1px solid var(--kc-border-alt);
  background: var(--kc-surface);
  color: #fff;
  padding: 12px 14px;
  font-size: var(--kc-font-base);
  cursor: pointer;
  transition: border-color var(--kc-transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

#kc-order-form select:focus {
  outline: none;
  border-color: var(--kc-accent);
}

#kc-step2 h3,
#kc-success h3 {
  margin: 0 0 20px;
  font-size: var(--kc-font-xl);
}

.kc-order-summary {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--kc-radius);
  margin-bottom: 20px;
  border: 1px solid var(--kc-border);
}

.kc-summary-item {
  font-size: var(--kc-font-sm);
  margin-bottom: 8px;
}

.kc-summary-item:last-child {
  margin-bottom: 0;
}

.kc-summary-item strong {
  color: var(--kc-muted);
  font-weight: 500;
}

.kc-summary-divider {
  border: 0;
  border-top: 1px solid var(--kc-border);
  margin: 12px 0;
}

.kc-confirm-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.kc-confirm-call,
.kc-confirm-whatsapp {
  width: 100%;
}

.kc-cta--whatsapp {
  background: var(--kc-success);
}

.kc-cta--whatsapp:hover {
  background: #1da851;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.kc-back-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--kc-muted);
  cursor: pointer;
  font-size: var(--kc-font-sm);
  padding: 8px;
  transition: color var(--kc-transition);
}

.kc-back-btn:hover {
  color: var(--kc-accent);
}

#kc-success {
  text-align: center;
  padding: 24px 0;
}

.kc-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--kc-success);
  font-size: 36px;
  font-weight: 300;
}

.kc-order-number {
  font-size: var(--kc-font-lg);
  margin-bottom: 12px;
}

.kc-order-number strong {
  color: var(--kc-accent);
  font-size: var(--kc-font-xl);
}

.kc-success-message {
  color: var(--kc-muted);
  margin-bottom: 24px;
  font-size: var(--kc-font-sm);
  line-height: 1.6;
}

.kc-close-success {
  min-width: 140px;
}

@media (max-width: 480px) {
  .kc-modal-card--lg {
    max-width: 100%;
  }
  
  .kc-confirm-buttons {
    gap: 10px;
  }
  
  .kc-success-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}
