@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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


html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.hero-title {
  font-family: 'Garamond', 'EB Garamond', 'Times New Roman', serif;
}

.blur-fade-once {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(20px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.blur-fade-once-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-image-slide-up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

.hero-image-slide-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

/* Fix for browser zoom */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input,
  button {
    font-size: 16px;
  }
}

/* Mobile Menu Styles */
#mobile-menu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mobile-menu.menu-open {
  transform: translateY(0);
  opacity: 1;
}

/* Nav Card Styles */
#nav-card {
  position: fixed;
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  filter: blur(12px);
}

#nav-card.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

#nav-card-content,
#nav-card-image {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

#nav-card.show #nav-card-content,
#nav-card.show #nav-card-image {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.05s;
}

/* App Card Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: white;
  border-radius: 1rem;
  width: 100%;
  max-width: 28rem;
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  #navbar {
    top: 0;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    display: flex;
    align-items: center;
  }

  #navbar img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
  }

  #mobile-menu-btn {
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #mobile-menu-btn svg {
    width: 20px;
    height: 20px;
  }

  #desktop-nav {
    display: none;
  }

  #mobile-menu-btn {
    display: block;
  }

  #desktop-start-btn {
    display: none;
  }

  .mobile-start-btn {
    display: block !important;
  }

  /* 모바일에서 이미지가 topnav 크기에 맞춰지도록 */
  #image-canvas {
    max-width: calc(100vw - 2rem) !important;
  }
}

@media (min-width: 901px) {
  #navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  #mobile-menu-btn {
    display: none;
  }

  #desktop-nav {
    display: flex;
  }

  #desktop-start-btn {
    display: block;
  }

}

/* Utility classes */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pixel animation styles */
.pixel {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
}

/* Gradient Overlay for Hero Section */
/* 
 * 히어로 섹션 상단 그라데이션 오버레이
 * 그라데이션 값 변경 시 아래 background 속성만 수정하면 됩니다.
 * 현재 값: #4B90DC → 투명 (0% → 41% → 68% → 88% → 100%)
 */
.gradient-overlay {
  background: #3a82cf;
  background: linear-gradient(180deg, rgba(58, 130, 207, 1) 0%, rgba(75, 144, 220, 1) 16%, rgba(106, 172, 240, 1) 35%, rgba(162, 207, 247, 1) 57%, rgba(188, 219, 245, 0.64) 78%, rgba(83, 175, 237, 0) 96%);

}

/* Start Prompt Section */
.start-prompt-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: #3a82cf;
  background: linear-gradient(180deg, rgba(58, 130, 207, 1) 0%, rgba(75, 144, 220, 1) 21%, rgba(106, 172, 240, 1) 46%, rgba(162, 207, 247, 1) 68%, rgba(188, 219, 245, 0.64) 88%, rgba(83, 175, 237, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Background Forest Image */
.hero-bg-forest {
  background-image: url('https://birzont.github.io/Brand/homepage/homepagebackground-h.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.2);
  opacity: 1;
}

/* Glass Button Style */
.glass-button {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Product Carousel Styles */
.product-tablist {
  display: flex;
  flex-direction: column;
}

.product-tab {
  width: 100%;
  text-align: left;
  padding: 0.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-tab:hover {
  opacity: 0.8;
}

.product-tab-active {
  opacity: 1;
}

.product-tab-summary {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-tab-content {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, color 0.3s ease;
  margin: 0;
}

.product-tab-content-visible {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.product-tab-active .product-tab-summary {
  color: #000;
  font-weight: 700;
}

.product-tab-active .product-tab-content {
  color: #000;
}

.product-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.product-indicator-active {
  background: #000;
  width: 24px;
  border-radius: 4px;
}

#product-carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#product-carousel-slides {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-slide-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.product-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 100%;
}

/* Mobile Carousel between header and tablist */
.mobile-carousel-wrapper {
  width: calc(100% + 4rem);
  margin: 0 -2rem;
}

.mobile-carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f4f6;
}

.mobile-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.mobile-carousel-img-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 1rem;
  color: #000;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

#product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Product Card Large */
.product-card-large {
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  height: 650px;
}

.product-card-large > div {
  height: 100%;
  overflow: hidden;
}

.product-card-large > div > div:first-child {
  height: 100%;
  overflow: hidden;
}

.product-card-large:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Product Feature Cards */
.product-feature-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.18);
}

/* Product Card Text Area and Title */
.product-card-logo-area {
  height: calc(100% - 80px);
}

.product-card-text-area {
  height: 80px;
  padding: 0.75rem 2rem;
}

.product-card-title {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .product-card-logo-area {
    height: calc(100% - 60px);
  }
  
  .product-card-text-area {
    height: 60px;
    padding: 0.5rem 1.5rem;
  }
  
  .product-card-title {
    font-size: 1.5rem;
    padding-left: 0.5rem;
  }
  
  .product-card-overlay-title {
    font-size: 1.75rem !important;
  }
  
  .product-card-overlay-description {
    font-size: 1.1rem !important;
  }
  
  .product-card-overlay-link {
    font-size: 1rem !important;
  }
}

/* Product Language Section */
.product-language-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

.language-demo {
  border-radius: 32px;
  background: #f7f8fb;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.demo-surface {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .language-demo {
    border-radius: 16px;
  }
  
  .demo-surface {
    padding: 1.25rem;
  }
  
  .demo-header-actions button {
    padding: 0.35rem 0.85rem;
    font-size: 0.9rem;
    min-height: 34px;
  }
  
  /* Pricing section mobile optimization */
  .pricing-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
  }
  
  .pricing-cards-grid {
    gap: 1.5rem !important;
  }
  
  .pricing-card {
    padding: 2rem !important;
    min-height: auto !important;
  }
  
  .pricing-card > div:first-child {
    margin-bottom: 0.75rem !important;
  }
  
  .pricing-card-title {
    font-size: 1.5rem !important;
  }
  
  .pricing-card > div:nth-child(2) {
    margin-bottom: 0.75rem !important;
  }
  
  .pricing-card-price {
    font-size: 2.5rem !important;
  }
  
  .pricing-card-period {
    font-size: 1rem !important;
  }
  
  .pricing-card-description {
    font-size: 1rem !important;
    min-height: auto !important;
    margin-top: 0.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .pricing-card-button {
    font-size: 1rem !important;
    height: 3rem !important;
    margin-top: 0.75rem !important;
  }
  
  .pricing-card-features {
    font-size: 1.1rem !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }
  
  .pricing-card-features li {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }
  
  .pricing-card-features li span {
    font-size: 1.1rem !important;
  }
  
  /* Try for free section mobile optimization */
  .try-free-title {
    font-size: 2.5rem !important;
  }
  
  .try-free-description {
    font-size: 1.25rem !important;
  }
  
  .try-free-button {
    font-size: 1.25rem !important;
    padding: 1rem 2rem !important;
    height: auto !important;
  }
}

/* Try for free button styling */
.try-free-button {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
}

.try-free-button:hover {
  background: rgba(0, 0, 0, 0.75) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Careers section mobile optimization */
@media (max-width: 767px) {
  .careers-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .careers-content {
    min-height: auto !important;
  }
  
  .careers-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .careers-text {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .careers-text:last-of-type {
    margin-bottom: 1.5rem !important;
  }
  
  .careers-button {
    padding: 0.625rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.language-demo-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.language-demo-info {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

.demo-header-actions {
  display: flex;
  gap: 0.75rem;
}

.demo-header-actions button {
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: white;
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.demo-header-actions button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-like-count,
.demo-share-count {
  font-weight: 600;
}

.demo-like.liked {
  color: #ef4444;
}

.demo-like.liked svg path {
  fill: #ef4444;
  stroke: #ef4444;
}

.demo-bookmark.bookmarked {
  color: #2563eb;
}

.demo-bookmark.bookmarked svg path {
  fill: #2563eb;
  stroke: #2563eb;
}

.demo-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #0f172a;
}

.demo-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.4rem;
}

.demo-badge-icon img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}

.language-demo-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.demo-card {
  background: #121417;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.demo-card-toolbar {
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.demo-toolbar-actions {
  display: flex;
  gap: 0.75rem;
}

.demo-toolbar-actions button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  border-radius: 12px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.demo-toolbar-actions button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.demo-toolbar-actions button.primary {
  background: white;
  color: #0f172a;
  border-color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.demo-card-body {
  padding: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.demo-card-body p {
  margin: 0;
}

.demo-card-body ul,
.demo-card-body ol {
  margin: 0;
  padding-left: 1.25rem;
}

.demo-inline-input {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  color: white;
  font-size: 0.92rem;
  min-width: 120px;
  width: auto;
  margin: 0 0.25rem;
  vertical-align: baseline;
}

.demo-inline-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.demo-inline-input:focus {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.language-demo-note {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.85rem;
}

.language-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.language-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.language-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.language-description {
  font-size: 1.05rem;
  color: #4c5465;
  line-height: 1.7;
  max-width: 520px;
}

.language-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.language-stat {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.language-stat:last-child {
  border-bottom: none;
}

.language-stat-value {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.language-stat-suffix {
  font-size: 1.25rem;
  font-weight: 500;
  color: #94a3b8;
}

.language-stat-label {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.2rem 0;
  color: #0f172a;
}

.language-stat-desc {
  font-size: 0.95rem;
  color: #646e82;
  line-height: 1.5;
  margin: 0;
}

.language-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.language-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
}

.language-arrow {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-arrow-img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

@media (min-width: 768px) {
  .product-language-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .language-demo {
    flex: 1.02;
  }

  .language-content {
    flex: 0.9;
  }

  .language-content {
    padding: 3.5rem;
  }

  .language-demo {
    padding: 2.5rem;
  }
}

/* Logo Slider Styles */
.logo-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-slider-track {
  display: flex;
  gap: 3rem;
  animation: logoSlide 40s linear infinite;
  width: fit-content;
  will-change: transform;
}

@media (max-width: 767px) {
  .logo-slider-track {
    gap: 2rem;
    animation: logoSlide 30s linear infinite;
  }
}

.logo-slider-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.logo-slider-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

@media (max-width: 767px) {
  .logo-slider-img {
    height: 30px;
  }
}

.logo-slider-item:hover .logo-slider-img {
  opacity: 1;
  filter: grayscale(0%);
}

/* User Prompts Section */
.user-prompts-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 1rem;
}

.user-prompts-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.user-prompts-grid::-webkit-scrollbar {
  display: none;
}

.user-prompt-card {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 210px;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
}

.user-prompt-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.user-prompt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.user-prompt-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0f172a;
}

.user-prompt-ai-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.3rem;
  flex-shrink: 0;
}

.user-prompt-ai-icon img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
}

.user-prompt-ai-icon.claude-icon {
  background: rgba(255, 107, 53, 0.15);
}

.user-prompt-ai-icon.deepseek-icon {
  background: rgba(59, 130, 246, 0.15);
}

.user-prompt-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.user-prompt-like,
.user-prompt-bookmark {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: #0f172a;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.user-prompt-like svg,
.user-prompt-bookmark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-prompt-like.liked svg path {
  fill: #ef4444;
  stroke: #ef4444;
}

.user-prompt-like.liked,
.user-prompt-like.liked span {
  color: #ef4444;
}

.user-prompt-bookmark.bookmarked svg path {
  fill: #2563eb;
  stroke: #2563eb;
}

.user-prompt-bookmark.bookmarked,
.user-prompt-bookmark.bookmarked span {
  color: #2563eb;
}

.user-prompt-like-count,
.user-prompt-bookmark-count {
  font-weight: 600;
  font-size: 1.1rem;
}

.user-prompt-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-prompt-description {
  font-size: 1.05rem;
  color: #4c5465;
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-prompt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.user-prompt-author {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.user-prompt-free {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 500;
}

.user-prompt-free svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

/* Carousel Navigation Buttons */
.prompt-carousel-btn {
  display: none;
}

@media (min-width: 768px) {
  .user-prompts-container {
    padding: 0;
  }

  .user-prompts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .user-prompt-card {
    padding: 1.5rem;
    gap: 1rem;
    height: 280px;
    width: auto;
    min-width: auto;
    flex-shrink: 1;
  }

  .user-prompt-title {
    font-size: 1.15rem;
  }

  .user-prompt-description {
    font-size: 0.9rem;
  }

  .prompt-carousel-btn {
    display: none;
  }
}

/* Language Selector Styles */
.language-selector-wrapper {
  position: relative;
}

.language-selector-dropdown {
  max-height: 0;
  transform: translateY(-10px);
}

.language-selector-dropdown.opacity-100 {
  max-height: 300px;
  transform: translateY(0);
}

.language-selector-option-active {
  background-color: #f3f4f6;
  font-weight: 500;
}

/* Team Section Styles */
.team-member-card {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-4px);
}

.team-member-card img {
  transition: transform 0.3s ease;
}

.team-member-card:hover img {
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .team-member-card h3 {
    font-size: 1rem;
  }
  
  .team-member-card p {
    font-size: 0.875rem;
  }
  
  .team-member-image-container {
    margin-bottom: 0.5rem !important;
  }
  
  .team-member-name {
    margin-bottom: 0 !important;
  }
  
  .team-title-container {
    margin-bottom: 1rem !important;
  }
  
  .products-title-container {
    margin-bottom: 1rem !important;
  }
  
  .products-title-wrapper {
    margin-bottom: 0.5rem !important;
  }
  
  .team-linkedin-badge {
    padding: 0.375rem !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
  }
  
  .team-linkedin-icon {
    width: 14px !important;
    height: 14px !important;
  }
  
  .team-linkedin-icon[width] {
    width: 14px !important;
  }
  
  .team-linkedin-icon[height] {
    height: 14px !important;
  }
}

/* Team Member Modal Styles */
#team-member-modal {
  transition: opacity 0.3s ease;
}

#team-member-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

#team-member-modal:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.team-modal-content {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 767px) {
  .team-modal-content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  
  #team-member-modal .p-8 {
    padding: 1.5rem;
  }
  
  /* Blog Section Mobile Styles */
  .blog-header {
    margin-bottom: 1rem !important;
  }
  
  .blog-list-item:last-child .border-b {
    border-bottom: none !important;
  }
  
  .blog-list-item {
    transition: background-color 0.2s ease;
  }
  
  .blog-list-item:hover {
    background-color: #f9fafb;
  }
  
  /* What we do & Our Vision Mobile Styles */
  .what-we-do-section h2,
  .our-vision-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .what-we-do-section p,
  .our-vision-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .what-we-do-section .text-xs,
  .our-vision-section .text-xs {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }
}

/* Section Image Styles */
.section-image {
  max-height: 500px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .section-image {
    max-height: 200px;
  }
}

/* About Page Product Cards */
.about-product-card {
  transition: transform 0.3s ease;
}

.about-product-card:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .about-product-card {
    height: 100px !important;
    min-height: 100px !important;
  }
  
  .about-product-card h3 {
    font-size: 1.25rem;
  }
  
  .about-product-card img {
    width: 2rem !important;
    height: 2rem !important;
  }
  
  .about-product-card .w-8 {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }
}

/* About Page Timeline Styles */
.timeline-year-tab {
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .timeline-year-tab {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  
  .timeline-year-tab-container {
    padding: 0.25rem;
  }
  
  /* Timeline events mobile - centered layout */
  #timeline-container .relative > div[style*="width: 45%"] {
    width: 45% !important;
  }
  
  #timeline-container .text-right {
    text-align: right !important;
    padding-right: 0.5rem !important;
  }
  
  #timeline-container .text-left {
    text-align: left !important;
    padding-left: 0.5rem !important;
  }
  
  #timeline-container .absolute.w-3.h-3.rounded-full {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}

