@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
/* [project]/apps/mercato/src/components/landing/landing.css [app-client] (css) */
.lama-landing * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lama-landing {
  color: #fff;
  background-color: #0b0f19;
  height: 100vh;
  font-family: Inter, sans-serif;
  position: relative;
  overflow: hidden;
}

.lama-landing.is-scrollable {
  height: auto;
  overflow-y: auto;
}

.background {
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.glow-orb {
  filter: blur(120px);
  border-radius: 50%;
  position: absolute;
}

.glow-orb-1 {
  background: radial-gradient(circle, #00c8ff38 0%, #0078ff0f 40%, #0000 70%);
  width: 600px;
  height: 600px;
  animation: 10s ease-in-out infinite orbP1;
  top: -250px;
  right: -150px;
}

.glow-orb-2 {
  background: radial-gradient(circle, #a855f738 0%, #7c3aed0f 40%, #0000 70%);
  width: 500px;
  height: 500px;
  animation: 12s ease-in-out infinite orbP2;
  bottom: -250px;
  left: -150px;
}

.glow-orb-3 {
  background: radial-gradient(circle, #00ffc81f 0%, #00b4ff0a 40%, #0000 70%);
  width: 400px;
  height: 400px;
  animation: 14s ease-in-out infinite orbP3;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
}

@keyframes orbP1 {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.1);
  }
}

@keyframes orbP2 {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.08);
  }
}

@keyframes orbP3 {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
  }

  50% {
    opacity: .6;
    transform: translate(-50%, -50%)scale(1.1);
  }
}

.milky-way {
  filter: blur(2px);
  background: linear-gradient(145deg, #0000 20%, #6478dc0a 30%, #8c6edc12 38%, #a082f01a 43%, #8296ff1f 47%, #aa8cff24 50%, #8296ff1f 53%, #a082f01a 57%, #8c6edc12 62%, #6478dc0a 70%, #0000 80%);
  width: 250%;
  height: 160%;
  animation: 180s linear infinite milkyDrift;
  position: absolute;
  top: -30%;
  left: -50%;
}

.milky-way-core {
  filter: blur(8px);
  background: linear-gradient(145deg, #0000 32%, #b4a0ff0f 42%, #c8b4ff1a 47%, #dcc8ff21 50%, #c8b4ff1a 53%, #b4a0ff0f 58%, #0000 68%);
  width: 250%;
  height: 140%;
  animation: 180s linear infinite milkyDrift;
  position: absolute;
  top: -20%;
  left: -50%;
}

.milky-way-glow {
  filter: blur(30px);
  background: linear-gradient(145deg, #0000 36%, #a08cff08 44%, #b4aaff0f 48%, #c8beff14 50%, #b4aaff0f 52%, #a08cff08 56%, #0000 64%);
  width: 250%;
  height: 120%;
  animation: 180s linear infinite milkyDrift;
  position: absolute;
  top: -10%;
  left: -50%;
}

@keyframes milkyDrift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-40%);
  }
}

.neural-lines {
  z-index: 1;
  opacity: .12;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.neural-node {
  opacity: .5;
}

.starfield {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.star-drift {
  border-radius: 50%;
  animation: linear infinite starDrift;
  position: absolute;
}

@keyframes starDrift {
  0% {
    opacity: var(--star-o);
    transform: translate3d(0, 0, 0);
  }

  8% {
    opacity: var(--star-o);
  }

  92% {
    opacity: var(--star-o);
  }

  100% {
    transform: translate3d(calc(-100vw - 20px),var(--drift-y, 0),0);
    opacity: 0;
  }
}

.star-twinkle {
  border-radius: 50%;
  animation: ease-in-out infinite twinkle;
  position: absolute;
}

@keyframes twinkle {
  0%, 100% {
    opacity: .1;
    transform: scale(.6);
  }

  50% {
    opacity: var(--tw-max, .8);
    transform: scale(1);
  }
}

.lama-landing-container {
  z-index: 10;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 48px 0;
  display: flex;
  position: relative;
}

.lama-landing:not(.is-scrollable) .lama-landing-container {
  height: 100vh;
}

.lama-landing main {
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
}

.lama-landing:not(.is-scrollable) main {
  justify-content: center;
}

header {
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 32px;
  display: flex;
}

.logo {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 12px;
  padding: 0;
  display: flex;
}

.logo-image {
  width: auto;
  height: 40px;
  display: block;
}

.nav {
  align-items: center;
  gap: 32px;
  display: flex;
}

.nav-links {
  gap: 28px;
  display: flex;
}

.nav-link {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.nav-link:hover {
  color: #00c8ff;
}

.nav-link:after {
  content: "";
  background: linear-gradient(90deg, #00c8ff, #7c3aed);
  border-radius: 1px;
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

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

.nav-link-active {
  color: #00c8ff;
}

.nav-link-active:after {
  width: 100%;
}

.language-toggle {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  color: #e2e8f0;
  background: #94a3b80d;
  border: 1px solid #94a3b833;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.language-toggle:hover {
  color: #00c8ff;
  background: #00c8ff14;
  border-color: #00c8ff66;
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.btn-request-demo {
  color: #00c8ff;
  cursor: pointer;
  background: linear-gradient(135deg, #00c8ff26, #7c3aed26);
  border: 1px solid #00c8ff59;
  border-radius: 8px;
  margin-left: 12px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
}

.btn-request-demo:hover {
  background: linear-gradient(135deg, #00c8ff40, #7c3aed40);
  border-color: #00c8ff99;
  transform: translateY(-1px);
  box-shadow: 0 0 20px #00c8ff33;
}

#heroPage {
  flex: 1;
  align-items: center;
  gap: 80px;
  width: 100%;
  min-height: 0;
  display: flex;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  color: #00c8ff;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00c8ff1a, #7c3aed1a);
  border: 1px solid #00c8ff40;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.badge-dot {
  background: #0f8;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite dotPulse;
  box-shadow: 0 0 8px #0f8;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero-headline {
  letter-spacing: -.03em;
  margin-bottom: 24px;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
}

.hero-headline .line-1 {
  color: #fff;
}

.hero-headline .line-2 {
  background: linear-gradient(135deg, #00c8ff 0%, #7c3aed 40%, #ff64c8 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.65;
}

.hero-buttons {
  gap: 16px;
  display: flex;
}

.btn-primary {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #00c8ff, #7c3aed);
  border: none;
  border-radius: 10px;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px #00c8ff59;
}

.btn-primary:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff26, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px #00c8ff73;
}

.btn-secondary {
  color: #e2e8f0;
  cursor: pointer;
  background: none;
  border: 1px solid #94a3b84d;
  border-radius: 10px;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s;
}

.btn-secondary:hover {
  color: #fff;
  background: #94a3b814;
  border-color: #00c8ff80;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #0000004d;
}

.hero-products {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.hero-products-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  display: grid;
}

.product-card {
  cursor: pointer;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: inherit;
  background: #121826bf;
  border: 1px solid #94a3b814;
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-card:before {
  content: "";
  opacity: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.product-card:first-child:before {
  background: linear-gradient(135deg, #00c8ff1f, #0000 60%);
}

.product-card:nth-child(2):before {
  background: linear-gradient(135deg, #7c3aed1f, #0000 60%);
}

.product-card:nth-child(3):before {
  background: linear-gradient(135deg, #ff64c81f, #0000 60%);
}

.product-card:nth-child(4):before {
  background: linear-gradient(135deg, #00ff881f, #0000 60%);
}

.product-card:nth-child(5):before {
  background: linear-gradient(135deg, #ffc8001f, #0000 60%);
}

.product-card:nth-child(6):before {
  background: linear-gradient(135deg, #0096ff1f, #0000 60%);
}

.product-card:hover:before {
  opacity: 1;
}

.product-card:first-child:hover {
  border-color: #00c8ff80;
  box-shadow: 0 8px 40px #00c8ff26;
}

.product-card:nth-child(2):hover {
  border-color: #7c3aed80;
  box-shadow: 0 8px 40px #7c3aed26;
}

.product-card:nth-child(3):hover {
  border-color: #ff64c880;
  box-shadow: 0 8px 40px #ff64c826;
}

.product-card:nth-child(4):hover {
  border-color: #00ff8880;
  box-shadow: 0 8px 40px #00ff8826;
}

.product-card:nth-child(5):hover {
  border-color: #ffc80080;
  box-shadow: 0 8px 40px #ffc80026;
}

.product-card:nth-child(6):hover {
  border-color: #0096ff80;
  box-shadow: 0 8px 40px #0096ff26;
}

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

.product-card-header {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.product-icon {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.product-card:first-child .product-icon {
  background: linear-gradient(135deg, #00c8ff33, #00c8ff0d);
}

.product-card:nth-child(2) .product-icon {
  background: linear-gradient(135deg, #7c3aed33, #7c3aed0d);
}

.product-card:nth-child(3) .product-icon {
  background: linear-gradient(135deg, #ff64c833, #ff64c80d);
}

.product-card:nth-child(4) .product-icon {
  background: linear-gradient(135deg, #0f83, #00ff880d);
}

.product-card:nth-child(5) .product-icon {
  background: linear-gradient(135deg, #ffc80033, #ffc8000d);
}

.product-card:nth-child(6) .product-icon {
  background: linear-gradient(135deg, #0096ff33, #0096ff0d);
}

.product-card:first-child .product-icon svg {
  stroke: #00c8ff;
}

.product-card:nth-child(2) .product-icon svg {
  stroke: #a855f7;
}

.product-card:nth-child(3) .product-icon svg {
  stroke: #ff64c8;
}

.product-card:nth-child(4) .product-icon svg {
  stroke: #0f8;
}

.product-card:nth-child(5) .product-icon svg {
  stroke: #ffc800;
}

.product-card:nth-child(6) .product-icon svg {
  stroke: #0096ff;
}

.product-arrow {
  color: #475569;
  font-size: 16px;
  transition: all .3s;
}

.product-card:first-child:hover .product-arrow {
  color: #00c8ff;
}

.product-card:nth-child(2):hover .product-arrow {
  color: #a855f7;
}

.product-card:nth-child(3):hover .product-arrow {
  color: #ff64c8;
}

.product-card:nth-child(4):hover .product-arrow {
  color: #0f8;
}

.product-card:nth-child(5):hover .product-arrow {
  color: #ffc800;
}

.product-card:nth-child(6):hover .product-arrow {
  color: #0096ff;
}

.product-card:hover .product-arrow {
  transform: translateX(5px);
}

.product-title {
  z-index: 1;
  color: #f1f5f9;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.product-description {
  color: #94a3b8;
  z-index: 1;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 58.125px;
  font-size: 12.5px;
  line-height: 1.55;
  display: -webkit-box;
  position: relative;
  overflow: hidden;
}

.detail-page {
  min-height: 100vh;
  padding-bottom: 80px;
  display: none;
}

.detail-page.active {
  display: block;
}

.detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.detail-back {
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  margin: 32px 0 40px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  display: inline-flex;
}

.detail-back:hover {
  color: #fff;
}

.detail-back:hover .back-arrow {
  transform: translateX(-4px);
}

.back-arrow {
  font-size: 18px;
  transition: transform .3s;
}

.detail-hero-section {
  align-items: center;
  gap: 48px;
  margin-bottom: 72px;
  display: flex;
}

.detail-hero-icon {
  border-radius: 20px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
  position: relative;
}

.detail-hero-icon:after {
  content: "";
  opacity: .3;
  filter: blur(20px);
  z-index: -1;
  border-radius: 28px;
  position: absolute;
  inset: -15px;
}

.detail-hero-icon svg {
  width: 40px;
  height: 40px;
}

.detail-hero-text h1 {
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}

.detail-hero-text p {
  color: #94a3b8;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.65;
}

.detail-hero-buttons {
  gap: 14px;
  margin-top: 28px;
  display: flex;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.section-label:before {
  content: "";
  border-radius: 1px;
  width: 24px;
  height: 2px;
}

.features-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 72px;
  display: grid;
}

.feature-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #121826bf;
  border: 1px solid #94a3b814;
  border-radius: 14px;
  padding: 28px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.feature-card:hover:before {
  opacity: 1;
}

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

.feature-card-icon {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
}

.feature-card-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  color: #f1f5f9;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

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

.steps-section {
  margin-bottom: 72px;
}

.steps-track {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
  position: relative;
}

.steps-track:before {
  content: "";
  opacity: .15;
  border-radius: 1px;
  height: 2px;
  position: absolute;
  top: 36px;
  left: 80px;
  right: 80px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  z-index: 1;
  border: 2px solid;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  position: relative;
}

.step-card h3 {
  color: #f1f5f9;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.step-card p {
  color: #94a3b8;
  max-width: 260px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.6;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
  display: grid;
}

.stat-card {
  text-align: center;
  background: #12182680;
  border: 1px solid #94a3b814;
  border-radius: 14px;
  padding: 28px;
  transition: all .3s;
}

.stat-card:hover {
  border-color: #94a3b833;
  transform: translateY(-2px);
}

.stat-value {
  letter-spacing: -.02em;
  margin-bottom: 6px;
  font-size: 36px;
  font-weight: 800;
}

.stat-label {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
}

.cta-section {
  text-align: center;
  border: 1px solid;
  border-radius: 20px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  opacity: .08;
  position: absolute;
  inset: 0;
}

.cta-section h2 {
  letter-spacing: -.02em;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 800;
  position: relative;
}

.cta-section p {
  color: #94a3b8;
  z-index: 1;
  max-width: 500px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  position: relative;
}

.cta-section .btn-primary {
  z-index: 1;
  position: relative;
}

.page-enter {
  animation: .5s cubic-bezier(.4, 0, .2, 1) forwards pageIn;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.blog-page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.blog-page-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.blog-page-title {
  letter-spacing: -.03em;
  margin: 16px 0 12px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

.blog-page-subtitle {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.65;
}

.blog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 48px;
  display: grid;
}

.blog-card {
  color: inherit;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #121826bf;
  border: 1px solid #94a3b814;
  border-radius: 14px;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-card-overlay-link {
  z-index: 1;
  position: absolute;
  inset: 0;
}

.blog-card-category, .blog-card-tag, .blog-card-tags {
  z-index: 2;
  position: relative;
}

.blog-card-category {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #38bdf8;
  align-items: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 4px 0;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.blog-card-category:hover {
  text-decoration: underline;
}

.blog-card-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.blog-card-tag {
  color: #cbd5e1;
  background: #0f172a80;
  border: 1px solid #94a3b833;
  border-radius: 999px;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.blog-card-tag:hover {
  color: #7dd3fc;
  border-color: #38bdf866;
}

.blog-detail-taxonomy {
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.blog-archive-back {
  color: #38bdf8;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.blog-archive-back:hover {
  text-decoration: underline;
}

.skip-to-main {
  width: 1px;
  height: 1px;
  position: absolute;
  top: auto;
  left: -9999px;
  overflow: hidden;
}

.skip-to-main:focus {
  color: #f8fafc;
  z-index: 100;
  background: #0f172a;
  border: 2px solid #38bdf8;
  border-radius: 8px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  top: 16px;
  left: 16px;
}

.blog-card:hover {
  border-color: #94a3b833;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px #00000059;
}

.blog-card-accent {
  width: 100%;
  height: 4px;
}

.blog-card-cover {
  background: #0f172a99;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.blog-card-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.blog-cover-wrap {
  border: 1px solid #94a3b81f;
  border-radius: 14px;
  margin-bottom: 32px;
  overflow: hidden;
}

.blog-cover-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
}

.blog-content-heading {
  color: #e2e8f0;
  margin: 28px 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-content-heading:first-child {
  margin-top: 0;
}

.blog-content-figure {
  border: 1px solid #94a3b81a;
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}

.blog-content-image {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content-caption {
  color: #64748b;
  background: #0f172a80;
  padding: 10px 14px;
  font-size: 12px;
}

.blog-card-body {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 24px;
  display: flex;
}

.blog-card-meta {
  color: #64748b;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-card-excerpt {
  color: #94a3b8;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
  min-height: 62.4px;
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.blog-card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

.blog-empty {
  text-align: center;
  color: #94a3b8;
  padding: 64px 24px;
  font-size: 16px;
}

.blog-detail-meta {
  color: #64748b;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.blog-content {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #121826bf;
  border: 1px solid #94a3b814;
  border-radius: 14px;
  margin-bottom: 72px;
  padding: 32px 36px;
}

.blog-content p {
  color: #cbd5e1;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}

.blog-content p:last-child {
  margin-bottom: 0;
}

.blog-content-subheading {
  color: #e2e8f0;
  margin: 22px 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-inline-link {
  color: #38bdf8;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.blog-inline-link:hover {
  color: #7dd3fc;
}

.blog-trust-panel {
  border: 1px solid;
  border-radius: 14px;
  margin-bottom: 32px;
  padding: 24px 28px;
}

.blog-trust-panel-header {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  display: flex;
}

.blog-trust-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.blog-trust-text {
  color: #94a3b8;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.65;
}

.blog-trust-list {
  color: #cbd5e1;
  margin: 0 0 14px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.blog-trust-date {
  color: #64748b;
  margin-bottom: 12px;
  font-size: 12px;
  display: block;
}

.blog-trust-links {
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.blog-related {
  margin-bottom: 48px;
}

.blog-related-title {
  color: #e2e8f0;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
}

.blog-related-list {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.blog-related-list a {
  font-weight: 600;
  text-decoration: none;
}

.blog-related-list a:hover {
  text-decoration: underline;
}

.blog-hero-excerpt {
  color: #94a3b8;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.product-trust-panel {
  margin-top: 8px;
  margin-bottom: 40px;
}

.landing-secondary-link, .detail-back {
  text-decoration: none;
}

@media (max-width: 1280px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #heroPage {
    gap: 48px;
  }

  .hero-headline {
    font-size: 46px;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #heroPage {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-products {
    width: 100%;
  }

  .hero-headline, .blog-page-title {
    font-size: 40px;
  }

  .detail-hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .lama-landing-container {
    padding: 20px 20px 0;
  }

  header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 0 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    font-size: 13px;
  }

  .btn-request-demo {
    margin-left: 0;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subtitle {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    padding: 16px;
  }

  .product-title {
    font-size: 14px;
  }

  .blog-page {
    padding: 0 20px 48px;
  }

  .blog-page-header {
    margin-bottom: 32px;
    padding: 0 4px;
  }

  .blog-page-title {
    font-size: 32px;
  }

  .blog-page-subtitle {
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 32px;
  }

  .blog-card-cover {
    height: 200px;
  }

  .blog-content {
    padding: 24px 20px;
  }

  .detail-container {
    padding: 0 4px;
  }

  .detail-hero-section {
    flex-direction: column;
    gap: 24px;
  }

  .detail-hero-text h1 {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-track > div[style*="position:absolute"] {
    display: none;
  }

  .cta-section {
    padding: 32px 20px;
  }

  .cta-section h2 {
    font-size: 26px;
  }
}

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

  .logo-image {
    height: 32px;
  }

  .nav-links {
    flex: 1;
    justify-content: flex-start;
  }

  .language-toggle {
    padding: 5px 10px;
    font-size: 12px;
  }

  .btn-request-demo {
    padding: 7px 14px;
    font-size: 12px;
  }

  .hero-headline {
    font-size: 28px;
  }

  .hero-badge {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .hero-products-grid {
    grid-template-columns: 1fr;
  }

  .product-description {
    -webkit-line-clamp: 2;
    min-height: 38.75px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

