/* Workspace Page Styles */

/* CSS Variables for Workspace Hero Section */
:root {
  /* Typography */
  --uc-badge-font-size: clamp(12px, 2.5vw, 14px);
  --uc-title-font-size: clamp(32px, 8vw, 64px);
  --uc-description-font-size: clamp(16px, 3.5vw, 18px);
  --uc-description-line-height: clamp(24px, 4.5vw, 27px);
  
  /* Spacing */
  --uc-badge-padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 24px);
  --uc-button-padding: clamp(16px, 4vw, 18px) clamp(12px, 3vw, 24px);
  --uc-element-gap: clamp(16px, 4vw, 24px);
  --uc-buttons-gap: clamp(10px, 2.5vw, 14px);
  --uc-buttons-margin: clamp(32px, 6vw, 44px);
  --uc-sections-gap: clamp(80px, 15vw, 150px);
  
  /* Colors */
  --uc-text-color: #1F1F1F;
  --uc-button-primary-bg: #1F1F1F;
  --uc-button-primary-color: #FFF;
  --uc-button-outline-color: #1F1F1F;
  --uc-button-outline-bg: transparent;
  
  /* Border Radius */
  --uc-button-radius: 50px;
  --uc-badge-radius: 999px;
  
  /* Font Family */
  --uc-font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.workspace-page {
  background: #fff;
  color: var(--uc-text-color);
  font-family: var(--uc-font-family);
}

.uc-container {
  max-width: clamp(320px, 90vw, 1400px);
  margin: 0 auto;
  padding: 0;
}

/* Hero Section */
.uc-hero {
  background: #fff;
  color: var(--uc-text-color);
  padding: clamp(40px, 8vw, 80px) 0;
  position: relative;
}

.uc-hero__gradient-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

/* Left large soft gradient (yellow->purple) */
.uc-hero__gradient-left::before {
  content: "";
  position: absolute;
  width: clamp(300px, 40vw, 588.77px);
  height: clamp(200px, 25vw, 384.59px);
  left: -11%;
  top: 18%;
  border-radius: 50%;
  background: linear-gradient(50deg, #EDCF4B 0%, #6958ED 100%);
  opacity: 100;
  z-index: 0;
}

/* Right smaller gradient behind image (purple->yellow) */
.uc-hero__gradient-right::before {
  content: "";
  position: absolute;
  width: clamp(200px, 40vw, 532.57px);
  height: clamp(250px, 30vw, 449.64px);
  right: -5%;
  bottom: 15%;
  border-radius: 50%;
  background: linear-gradient(122deg, #6958ED 0, #EDCF4B 100%);
  opacity: 1;
  transform: rotate(-155.84deg);
}

.uc-hero .uc-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--uc-sections-gap);
  align-items: center;
  position: relative;
}

.uc-hero__content {
  position: relative;
  z-index: 10;
}

.uc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--uc-badge-padding);
  background: var(--uc-button-outline-bg);
  border: 1px solid var(--uc-text-color);
  border-radius: var(--uc-badge-radius);
  font-size: var(--uc-badge-font-size);
  font-weight: 500;
  color: var(--uc-text-color);
  font-family: var(--uc-font-family);
  margin-bottom: var(--uc-element-gap);
}

.uc-hero__badge-icon {
  font-size: 1rem;
}

.uc-hero__title {
  font-size: var(--uc-title-font-size);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 var(--uc-element-gap);
  color: var(--uc-text-color);
  font-family: var(--uc-font-family);
}

.uc-hero__subtitle {
  font-size: var(--uc-description-font-size);
  color: var(--uc-text-color);
  margin: 0 0 var(--uc-element-gap);
  line-height: var(--uc-description-line-height);
  font-weight: 400;
  font-family: var(--uc-font-family);
}

.uc-hero__actions {
  display: flex;
  gap: var(--uc-buttons-gap);
  flex-wrap: wrap;
  margin-top: var(--uc-buttons-margin);
}

/* Primary button colors: rely on shared base from components.css */
.uc-btn--primary {
  background: var(--uc-button-primary-bg);
  color: var(--uc-button-primary-color);
  border-color: var(--uc-button-primary-bg);
}

.uc-btn--primary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
  color: var(--uc-button-primary-color);
}

/* Visual */
.uc-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uc-hero__visual img {
  width: clamp(400px, 70vw, 800px);
  height: clamp(450px, 80vw, 900px);
  object-fit: contain;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

/* AI Hints */
.uc-hero__hint {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uc-hero__hint--left {
  left: -15%;
  top: 45%;
  animation: hintAppearLeft 0.8s ease-out 0.8s forwards;
}

.uc-hero__hint--right {
  right: -15%;
  top: 60%;
  animation: hintAppearRight 0.8s ease-out 1.2s forwards;
}

.uc-hero__hint img {
  width: clamp(200px, 25vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Hint Card Styles */
.uc-hero__hint .uc-hint-card {
  display: flex !important;
  gap: clamp(6px, 1vw, 8px) !important;
  background: rgb(0 0 0 / 70%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: clamp(16px, 2.5vw, 20px) !important;
  padding: clamp(10px, 2vw, 14px) !important;
  color: #fff !important;
  position: relative !important;
  z-index: 10 !important;
  opacity: 1 !important;
  transform: none !important;
  backdrop-filter: blur(10px) !important;
}

.uc-hero__hint .uc-hint-card__icon {
  width: clamp(20px, 3vw, 24px) !important;
  height: clamp(20px, 3vw, 24px) !important;
  background: rgba(217, 217, 217, 0.2) !important;
  border-radius: clamp(20px, 3.5vw, 25px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: clamp(1px, 0.3vw, 2px) !important;
}

.uc-hero__hint .uc-hint-card__icon svg {
  width: clamp(20px, 3vw, 24px) !important;
  height: clamp(20px, 3vw, 24px) !important;
}

.uc-hero__hint .uc-hint-card__content {
  flex: 1 !important;
  min-width: 0 !important;
}

.uc-hero__hint .uc-hint-card__label {
  font-size: clamp(12px, 2vw, 14px) !important;
  font-weight: 500 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  margin-bottom: clamp(3px, 0.5vw, 4px) !important;
  line-height: clamp(14px, 2.5vw, 16.94px) !important;
  align-items: center !important;
  display: flex !important;
  justify-content: flex-start !important;
}

.uc-hero__hint .uc-hint-card__text {
  font-size: clamp(12px, 2vw, 14px) !important;
  font-weight: 500 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  line-height: clamp(14px, 2.5vw, 16.94px) !important;
  word-wrap: break-word !important;
}

/* Animations */
@keyframes hintAppearLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-10px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes hintAppearRight {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translateX(10px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Core Features Section */
.core-features {
  padding: clamp(60px, 10vw, 120px) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}


.core-features__container {
  max-width: clamp(320px, 90vw, 1400px);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.core-features__badge {
  display: inline-block;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid #1F1F1F;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #1F1F1F;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.core-features__title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  color: #1F1F1F;
  margin: 0 0 60px;
  line-height: 1.2;
  position: relative;
}


.core-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.core-features__card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.core-features__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.core-features__card-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-features__card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.core-features__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1F1F1F;
  margin: 0 0 16px;
  line-height: 1.3;
}

.core-features__card-description {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* AI Ecosystem Section */
.ai-ecosystem {
  padding: clamp(80px, 12vw, 150px) 0;
  background: #1f1f1f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.ai-ecosystem__container {
  max-width: clamp(320px, 90vw, 1400px);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.ai-ecosystem__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.ai-ecosystem__left {
  position: relative;
  z-index: 3;
}

.ai-ecosystem__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 60px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.ai-ecosystem__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ai-ecosystem__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.ai-ecosystem__feature-icon svg {
  width: 24px;
  height: 24px;
}

.ai-ecosystem__feature-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__cta {
  margin-top: 48px;
}

.ai-ecosystem__btn {
  display: inline-block;
  padding: 18px 32px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__btn:hover {
  background: #ffffff;
  color: #1f1f1f;
  transform: translateY(-2px);
}

.ai-ecosystem__right {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: end;
}

/* Demo Panel */
.ai-ecosystem__demo {
  background: rgba(129, 89, 182, 0.2);
  border-radius: 20px;
  padding: 24px;
  width: 593px;
  height: 453px;
  position: relative;
  backdrop-filter: blur(10px);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.ai-ecosystem__demo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-ecosystem__demo-avatar {
  width: 44px;
  height: 44px;
  background: rgba(217, 217, 217, 0.2);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__demo-info {
  flex: 1;
}

.ai-ecosystem__demo-name {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 16.94px;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__demo-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-ecosystem__demo-status-dot {
  width: 6px;
  height: 6px;
  background: #58d16f;
  border-radius: 50%;
}

.ai-ecosystem__demo-status-text {
  font-size: 12px;
  color: #35c04f;
  font-weight: 500;
  line-height: 14.52px;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__demo-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-ecosystem__demo-message {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.ai-ecosystem__demo-message-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__loading-dots {
  display: inline-block;
  margin-left: 8px;
}

.ai-ecosystem__loading-dots .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  animation: loadingDots 1.4s infinite ease-in-out both;
}

.ai-ecosystem__loading-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.ai-ecosystem__loading-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

.ai-ecosystem__loading-dots .dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes loadingDots {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* AI Hints positioned absolutely like in Figma */
.ai-ecosystem__hints {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.ai-ecosystem__hint {
  position: absolute;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.ai-ecosystem__hint-decorator {
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.ai-ecosystem__hint-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-ecosystem__hint-content {
  flex: 1;
}

.ai-ecosystem__hint--primary {
  background: #1f1f1f;
  border: 1px solid #ffffff;
  width: clamp(500px, 102.9%, 610px);
  height: 80px;
  top: 22%;
  right: 4%;
}

.ai-ecosystem__hint--secondary {
  background: linear-gradient(90deg, #593d83 0%, #1f1f1f 100%);
  width: clamp(450px, 92.7%, 550px);
  height: 80px;
  top: 42%;
  right: 4%;
}

.ai-ecosystem__hint--tertiary {
  background: linear-gradient(90deg, #593d83 0%, #353339 100%);
  width: clamp(425px, 88.5%, 525px);
  height: 80px;
  bottom: 20%;
  right: 4%;
}

.ai-ecosystem__hint-label {
  font-size: 14px;
  font-weight: 400;
  color: #acacac;
  margin: 0 0 4px;
  line-height: 1.2;
  font-family: 'Roboto', sans-serif;
}

.ai-ecosystem__hint-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}

/* Decorative gradients */
.ai-ecosystem__gradient-left,
.ai-ecosystem__gradient-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

/* Left large soft gradient (yellow->purple) */
.ai-ecosystem__gradient-left::before {
  content: "";
  position: absolute;
  width: 588.77px;
  height: 384.59px;
  left: -35%;
  top: -2%;
  border-radius: 50%;
  background: linear-gradient(57deg, #F4C754 0%, #7056F3 100%);
  opacity: 0.6;
  z-index: 0;
}

/* Right smaller gradient behind image (purple range) */
.ai-ecosystem__gradient-right::before {
  content: "";
  position: absolute;
  width: clamp(200px, 40vw, 532.57px);
  height: 449.64px;
  right: -5%;
  bottom: -6%;
  border-radius: 50%;
  background: linear-gradient(90deg, #6958ED 0%, #5E52F3 100%);
  opacity: 1;
  transform: rotate(-155.84deg);
}

/* Conversation Intelligence Section */
.conversation-intelligence {
  padding: clamp(80px, 12vw, 150px) 0;
  background: #1f1f1f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.conversation-intelligence__container {
  max-width: clamp(320px, 90vw, 1400px);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.conversation-intelligence__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
}

.conversation-intelligence__header {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  border-bottom: 1px solid #373737;
}

.conversation-intelligence__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Roboto', sans-serif;
}

.conversation-intelligence__title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 60px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.conversation-intelligence__features {
  display: contents;
}

.conversation-intelligence__feature {
  padding: 40px;
  border-right: 1px solid #373737;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.conversation-intelligence__feature:first-child {
  border: 1px solid #252525;
  border-right: 1px solid #373737;
}

.conversation-intelligence__feature:last-child {
  border-right: none;
}

.conversation-intelligence__feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.conversation-intelligence__feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversation-intelligence__feature-title {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
}

.conversation-intelligence__feature-description {
  font-size: 18px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
}

.conversation-intelligence__demo {
  background: rgba(63, 63, 63, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  margin-top: 16px;
}

.conversation-intelligence__live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.conversation-intelligence__live-dot {
  width: 6px;
  height: 6px;
  background: #fd433c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.conversation-intelligence__live-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.conversation-intelligence__transcript {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conversation-intelligence__message {
  display: flex;
  gap: 8px;
}

.conversation-intelligence__message-label {
  font-size: 16px;
  font-weight: 400;
  color: #8b7ef1;
  font-family: 'Roboto', sans-serif;
  min-width: 60px;
}

.conversation-intelligence__message--customer .conversation-intelligence__message-label {
  color: #58d16f;
}

.conversation-intelligence__message-text {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  flex: 1;
}

.conversation-intelligence__message--typing .conversation-intelligence__message-text {
  color: #8c8c8c;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .uc-hero .uc-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .uc-hero__title {
    font-size: clamp(28px, 6vw, 48px);
  }

  .uc-hero__actions {
    justify-content: center;
  }
  
  .uc-hero__actions .uc-btn {
    flex: 1;
    min-width: 200px;
  }

  .uc-hero__hint--left {
    left: -10%;
    top: 15%;
  }

  .uc-hero__hint--right {
    right: -10%;
    top: 25%;
  }

  .uc-hero__hint img {
    width: clamp(120px, 18vw, 200px);
  }

  .uc-hero__hint .uc-hint-card {
    min-width: clamp(180px, 25vw, 200px) !important;
    max-width: clamp(250px, 35vw, 280px) !important;
    padding: clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 20px) !important;
  }

  .uc-hero__hint .uc-hint-card__icon {
    width: clamp(18px, 2.5vw, 20px) !important;
    height: clamp(18px, 2.5vw, 20px) !important;
  }

  .uc-hero__hint .uc-hint-card__icon svg {
    width: clamp(18px, 2.5vw, 20px) !important;
    height: clamp(18px, 2.5vw, 20px) !important;
  }

  .uc-hero__hint .uc-hint-card__label {
    font-size: clamp(10px, 1.5vw, 12px) !important;
    line-height: clamp(12px, 2vw, 14.52px) !important;
  }

  .uc-hero__hint .uc-hint-card__text {
    font-size: clamp(10px, 1.5vw, 12px) !important;
    line-height: clamp(12px, 2vw, 14.52px) !important;
  }

  .core-features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Mobile image quality optimization */
  .uc-hero__visual img,
  .uc-hero__hint img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Disable backdrop-filter on mobile for better performance */
  .uc-hero__hint .uc-hint-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.8) !important;
  }

  .core-features__card {
    padding: 32px 24px;
  }

  .ai-ecosystem__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .ai-ecosystem__features {
    gap: 24px;
  }
  
  .ai-ecosystem__feature {
    justify-content: center;
  }
  
  .ai-ecosystem__demo {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  
  .ai-ecosystem__hint--primary,
  .ai-ecosystem__hint--secondary,
  .ai-ecosystem__hint--tertiary {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  
  .ai-ecosystem__hint-decorator {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-right: 8px;
  }
  
  .ai-ecosystem__hints {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .ai-ecosystem__gradient-left,
  .ai-ecosystem__gradient-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .uc-hero__title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .uc-hero__subtitle {
    font-size: clamp(14px, 3vw, 16px);
  }

  .uc-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .uc-hero__actions .uc-btn {
    width: 100%;
    max-width: 280px;
  }

  .ai-ecosystem__demo {
    padding: 16px;
    min-height: 350px;
  }
  
  .ai-ecosystem__feature {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .ai-ecosystem__btn {
    width: 100%;
    text-align: center;
  }
  
  .ai-ecosystem__hint {
    padding: 12px;
  }

  .conversation-intelligence__content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .conversation-intelligence__feature {
    border-right: none;
    border-bottom: 1px solid #373737;
    padding: 32px 24px;
  }

  .conversation-intelligence__feature:last-child {
    border-bottom: none;
  }

  .conversation-intelligence__header {
    padding: 32px 24px;
  }
} 